我正在创建一个图片视图。但我的图像显示在中央,底部布局宽度也没有减少。这是我的代码: -
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<it.sephiroth.android.library.imagezoom.GalleryTouch
android:id="@+id/image"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/textView1"
android:layout_weight="1" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:background="@drawable/bottom"
android:text=" Thank you" />
</RelativeLayout>
答案 0 :(得分:2)
你应该使用填充父级来使用图像填充整个屏幕,这里我改变你的代码可能会对你有用 -
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_alignParentTop="true"
android:layout_height="fill_parent"
>
<it.sephiroth.android.library.imagezoom.GalleryTouch
android:id="@+id/image"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/textView1"
/>
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_alignParentBottom="true"
android:background="@drawable/bottom"
android:text=" THank you" />
</RelativeLayout>
答案 1 :(得分:0)
尝试在XML文件中使用android:scaleType="fitXY"
属性{。}}。