Tween动画(硬编码方法创建)(2)

 

</pre><p></p><p><span style="font-size:16px;">布局文件如下:</span></p><p><span style="font-size:16px;">  </span></p><p><span style="font-size:16px;"></span></p><p><span style="font-size:16px;"></span></p><pre name="code" class="html"><?xml version="1.0" encoding="utf-8"?>   <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"       android:layout_width="match_parent"       android:layout_height="match_parent"       android:orientation="vertical" >          <ImageView           android:id="@+id/test_animation"           android:layout_width="wrap_content"           android:layout_height="wrap_content"           android:src="@drawable/animation_test" />          <LinearLayout           xmlns:android="http://schemas.android.com/apk/res/android"           android:layout_width="match_parent"           android:layout_height="match_parent"           android:layout_marginTop="20dip" >              <Button               android:id="@+id/alpha"               android:layout_width="wrap_content"               android:layout_height="wrap_content"               android:text="alpha" />              <Button               android:id="@+id/roate"               android:layout_width="wrap_content"               android:layout_height="wrap_content"               android:text="roate" />              <Button               android:id="@+id/scale"               android:layout_width="wrap_content"               android:layout_height="wrap_content"               android:text="scale" />              <Button               android:id="@+id/translate"               android:layout_width="wrap_content"               android:layout_height="wrap_content"               android:text="translate" />       </LinearLayout>      </LinearLayout>  

效果截图:

Tween动画(硬编码方法创建)

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wyxwzw.html