2

画面の一番下と右側に画像ボタンを表示する方法。現在、このように使用していますが、画面の一番下にボタンが表示されません。

<ImageButton
    android:id="@+id/ibdGoBack"
    android:layout_width="42dp"
    android:layout_height="42dp"
    android:layout_gravity="right|bottom"
    android:background="@drawable/back_button"
    android:contentDescription="@string/backbutton" />

画面にはテキストビューが 1 つしかありません。

4

5 に答える 5

1

コンテナ ビューの場合は、正常にLinearLayout機能しているはずです。そうなることを願っていRelativeLayoutます。ぜひ試してみてください。

<ImageButton
android:id="@+id/ibdGoBack"
android:layout_width="42dp"
android:layout_height="42dp"
android:layout_gravity="right|bottom"
android:background="@drawable/back_button"
android:contentDescription="@string/backbutton"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true" />
于 2013-05-29T10:25:52.350 に答える
1

どちらが の親かはわかりませんがviewgroup、その親 (またはルート) として使用し、 とを使用するとimagebuttonうまくいく可能性があります。relativelayoutalignParentBottom="true"alignParentRight="true"

于 2013-05-29T10:26:04.730 に答える
1

RelativeLayout を使用する

 <?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"
        android:orientation="vertical" >

        <ImageButton
        android:id="@+id/ibdGoBack"
        android:layout_width="42dp"
        android:layout_height="42dp"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"
        android:background="@drawable/back_button"
        android:contentDescription="@string/backbutton"  />

    </RelativeLayout>

または、このような LinearLayout

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" 
    android:gravity="bottom|right">

    <ImageButton
        android:id="@+id/ibdGoBack"
        android:layout_width="42dp"
        android:layout_height="42dp"
        android:background="@drawable/back_button"
        android:contentDescription="@string/backbutton" />

</LinearLayout>
于 2013-05-29T10:26:05.787 に答える
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"
                tools:context=".MainActivity" >

                <ImageButton
    android:id="@+id/imageButton1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentRight="true"
    android:src="@drawable/ic_launcher" />

            </RelativeLayout>`
于 2013-05-29T10:26:29.090 に答える
0

下と右側には、次の簡単なコードを使用します。

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <ImageButton
        android:layout_width="42dp"
        android:layout_height="42dp"
        android:background="@drawable/back_button"
        android:contentDescription="@string/backbutton"
        android:layout_gravity="bottom|right"/>

</FrameLayout>
于 2013-05-29T10:30:54.697 に答える