android – 显示大于设备屏幕的图像

前端之家收集整理的这篇文章主要介绍了android – 显示大于设备屏幕的图像前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我希望在不调整图像大小的情况下显示尺寸大于设备屏幕的图像.它必须以屏幕为中心.我怎样才能做到这一点?

解决方法

使用带有图像视图的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>
原文链接:https://www.f2er.com/android/309087.html

猜你在找的Android相关文章