Posts dont carry two images for collapse
Post
Cancel

dont carry two images for collapse

1
2
3
4
5
6
7
8
//res/anim/ic_arrow_collapse.xml
<?xml version="1.0" encoding="utf-8"?>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
    android:drawable="@drawable/ic_arrow_expand"
    android:fromDegrees="180"
    android:pivotX="50%"
    android:pivotY="50%"
    android:toDegrees="180" />
1
2
3
4
5
6
7
//activity
        <ImageView
            android:id="@+id/img_toggler"
            android:layout_width="80dp"
            android:layout_height="80dp"
            android:layout_marginRight="10dp"
            android:background="@drawable/ic_arrow_expand" />
1
2
3
4
//code
	Animation rotateAnimation = AnimationUtils.loadAnimation(getActivity(), R.anim.ic_arrow_collapse);
	ImageView  imng = (ImageView) getActivity().findViewById(R.id.img_toggler);
	imng.startAnimation(rotateAnimation);

origin - http://www.pipiscrew.com/?p=3947 android-dont-carry-two-images-for-collapse

This post is licensed under CC BY 4.0 by the author.
Contents

Trending Tags