我需要旋转一个比屏幕大的轮子图像(这是必须的)。
问题是 android:scaleType="center" 是显示大于屏幕而不被缩放的图像所必需的,并且这个相同的标签在旋转时会裁剪图像(见下面的截图)
这是我的布局代码:
<ImageView
android:id="@+id/wheel_img"
android:scaleType="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/wheel_test" />
我的活动:
ImageView wheel_img = (ImageView) findViewById(R.id.wheel_img);
wheel_img.startAnimation(AnimationUtils.loadAnimation(this, R.anim.rotation));
和 anim/rotation.xml
<rotate
xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/linear_interpolator"
android:fromDegrees="0"
android:toDegrees="30"
android:pivotX="50%"
android:pivotY="50%"
android:fillAfter="true"
android:duration="2000" />
知道如何解决这个问题吗?这其实是相当紧急的!
提前致谢!