Firstly Add a button in your xml layout and set its VISIBILITY GONE like this :-
<Button
android:id="@+id/btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Previous Page"
android:textColor="#000000"
android:textSize="16dp"
android:paddingLeft="10dp"
android:layout_marginTop="10dp"
android:visibility="gone" />
Find it your java file like this :-
Button b=(Button)findViewByid(R.id.btn);
And when Ad Loads write this piece of code :-
b.setVisibility(View.VISIBLE);