I have a CircledImageView
which I'm using in my ViewPager
. I want when I switch the tab on the ViewPager
to animate the position of the CircledImageView
to go to the bottom (currently is in the middle). Is this possible?
My CircledImageView code:
<android.support.wearable.view.CircledImageView
android:id="@+id/moreIcon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_below="@+id/backDropPath"
android:layout_gravity="right"
android:layout_marginRight="15dp"
android:layout_marginTop="-28dp"
android:adjustViewBounds="false"
android:src="@drawable/ic_more_vert_white_36dp"
app:circle_color="@color/detailsMoreIconBackground"
app:circle_radius="28dp" />