本质上,我正在寻找没有中心的 scaleType="centerCrop" 之类的东西。
ImageView
当显示大于屏幕尺寸时,我无法正确显示。我正在尝试显示一个ImageView
开始top=0
,left=0
并且没有缩放。图像不适合屏幕是可以的。现在我有一个相对布局:
<?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:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/postagram_blank_large"/>
</RelativeLayout>
我试过wrap_content
在RelativeLayout
高度和宽度上使用 a 。我也玩过和scaleType
使用过Scrollview
. 的问题ScrollView
是图像比显示端口更高更宽(这也是注定要发生的)。
我怎样才能使这项工作?