用seekBar来控制一个图像的缩放大小和旋转度数,在网上查了很多资料,发现都不是我想要的效果,于是自己写了一个简单易懂的例子
1.首先,图片的缩放和旋转不能改变除它之外的布局,所以布局要选用相对布局,下面是布局代码
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/iv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop="20dp"
android:scaleType="fitCenter"
android:background="#ffffff"
android:src="@drawable/ic_haimian" />
<TextView
android:id="@+id/tv1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_above="@id/tv2"
android:layout_marginTop="10dp"
android:text="图像宽度:200"
android:textSize="20dp" />
<TextView
android:id="@+id/tv2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_