1

我是 android 新手,我遇到了 android UI 的问题。我想把确定按钮放在对话框对话框的边缘。我怎样才能做到这一点。在此处输入图像描述

The xml i am using for now is this.

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

    <TextView
        android:id="@+id/txt"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="defedfg" 
        android:textSize="20sp"/>

    <Button
        android:id="@+id/dialogButton"
        android:layout_width="100dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:background="@drawable/blue_button_xhdpi"
        android:text="@string/ok" 
        android:layout_marginTop="30dp"
        android:textColor="#f7f6f5"/>


</LinearLayout>
4

1 回答 1

1

它非常简单的解决方案。给 Take One Parent Layout 和 Take one LinearLayout 和 One button。然后在 Layout Child 上保留一些边距

这是XML

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

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="300dp"
    android:layout_marginBottom="20dp"
    android:background="@android:color/black"
    android:padding="10dp" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="300dp"
        android:background="@android:color/white" >
    </LinearLayout>
</LinearLayout>

<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@android:color/darker_gray"
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true"
    android:text="OK" />

和输出

在此处输入图像描述

于 2013-08-14T14:08:06.200 回答