android中Matrix之一(图片二维转动)

android最酷的就是它的图片切换效果,而其核心是通过Matrix类来实现的,作了个简单的小例子,可以通过点击两个按钮实现图片的左右转动,奉献以下程序代码;

页面布局matrixlayout.xml代码:

<?xmlversion="1.0"encoding="utf-8"?>

<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"

android:layout_width="wrap_content"android:layout_height="wrap_content">

<TextViewandroid:id="@+id/myTextView1"android:layout_width="fill_parent"

android:layout_height="fill_parent"android:text="helloxiaohua">

</TextView>

<Buttonandroid:id="@+id/myButton1"android:text="left"

android:layout_width="wrap_content"android:layout_height="wrap_content">

</Button>

<Buttonandroid:id="@+id/myButton2"android:text="right"

android:layout_width="wrap_content"android:layout_height="wrap_content">

</Button>

<ImageViewandroid:id="@+id/myImageView1"

android:layout_width="wrap_content"android:layout_height="wrap_content">

</ImageView>

</LinearLayout>

相关推荐