android对话框关闭按钮

时间:2012-04-28 06:38:20

标签: android

我有一项活动,我已使用

设置为对话框
<activity android:name=".ChangeUserImageActivity" android:theme="@android:style/Theme.Dialog"></activity>

如何在右上方创建关闭按钮?目前,我的布局如下,我使用绝对布局......

  <Button
    android:id="@+id/closebtn"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_x="260px"
    android:layout_y="5px"
    android:text="X"
    android:textSize="18sp"
    android:onClick="close_click"
    />

1 个答案:

答案 0 :(得分:3)

修改您当前的布局,使父级为RelativeLayout,然后您的Button将如下所示:

<Button
    android:id="@+id/closebtn"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:text="X"
    android:textSize="18sp"
    android:onClick="close_click"
    />

当然,您必须修改当前布局才能使用RelativeLayout(您未在问题中添加的布局)