确定按钮在对话框中

时间:2013-08-14 13:56:27

标签: android

我是android的新手,我的android UI问题。我想在对话框对话框的行边缘放置OK按钮。我该怎么做。enter image description here

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>

1 个答案:

答案 0 :(得分:1)

它非常简单的解决方案。给一个父布局和内部取一个LinearLayout和一个按钮。然后在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" />

和OutPut

enter image description here