1

画像ビューを作成しています。しかし、私の画像は中央に表示されており、下部のレイアウト幅も減少していません.これは私のコードです:-

<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>
4

2 に答える 2

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>
于 2012-10-29T09:43:39.800 に答える
0

XML ファイルでプロパティandroid:scaleType="fitXY"forを使用してみてください。ImageView

于 2012-10-29T10:50:57.850 に答える