屏幕最右侧和右侧的显示按钮

时间:2013-05-29 10:21:34

标签: android

如何在屏幕的最底部和右侧显示图像按钮。 现在,我正在使用这样,但按钮没有显示在屏幕的最底部。

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

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

5 个答案:

答案 0 :(得分: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" />

答案 1 :(得分:1)

不确定哪个是viewgroup的父imagebutton,但如果您使用relativelayout作为其父(或根)并使用alignParentBottom="true",它可能适合您和alignParentRight="true"

答案 2 :(得分: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>

答案 3 :(得分: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>`

答案 4 :(得分: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>