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" />

屏幕上只有一个文本视图。

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

不确定哪个是 的父viewgroupimagebutton,但如果您将relativelayout其用作其父级(或根)并使用alignParentBottom="true"andalignParentRight="true"

于 2013-05-29T10:26:04.730 回答
1

使用相对布局

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

或者这样的线性布局

<?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 回答