我有一个活动,我已使用设置为对话框
<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"
/>