私はRelativeLayout
のスクリーンの外にある問題のボタンショーに直面しています。 ImageView
ボタンを表示するための拡大縮小画像は表示されません。私が持っているものRelativeLayoutを画面に合わせるにはどうすればいいですか?
:私が欲しいもの
:
はコード:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_vertical" >
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/str"
android:textAppearance="@android:style/TextAppearance.Small"
android:textColor="?android:attr/textColorTertiary"
android:layout_centerHorizontal="true"
/>
<ru.mw.widget.DrawableImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/textView"
android:adjustViewBounds="true"
android:layout_centerHorizontal="true"
android:scaleType="centerCrop"
/>
<Button
android:id="@+id/processButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/str"
android:layout_below="@+id/imageView"
android:layout_centerHorizontal="true"
/>
問題私は画面の向きを変更する場合:私は風景モードのすべてでArun C Thomas's methodを使用 場合はOKですが、ポートレートモードでは、私はこの(左/右エッジでトリミングされた画像)を持っている:
期待されている何:
アンドロイド追加
Button
間ImageView
:あなたのボタンにalignParentBottomを、そしてアンドロイド:alignParentTop(両方=真)あなたのTextViewに。あなたはImageViewのために今のところ境界線を設定していません。 –