我希望在不调整图像大小的情况下显示尺寸大于设备屏幕的图像.它必须以屏幕为中心.我怎样才能做到这一点?
解决方法
使用带有图像视图的scrollview并设置该滚动视图的高度
例
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent"> <ImageView android:id="@+id/accountIcon" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </ScrollView>