我的布局xml文件如下:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/RelativeLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ListView
android:id="@+id/action_bar_item_list"
android:layout_above="@+id/mybutton"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</ListView>
<Button
android:id="@+id/mybutton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:text="Button" />
<LinearLayout
android:id="@+id/messagelayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:orientation="vertical" >
<TextView
android:id="@+id/message"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceLarge" />
</LinearLayout>
</RelativeLayout>
如果单击 mybutton,messagelayout 将设置为可见。
虽然 messagelayout 是可见的,但我想做一个诸如 setCanceledOnTouchOutside of dialog 之类的功能。
当用户在messagelayout旁边触摸屏时,它会将messagelayout设置为消失,并且不做任何其他事情。
如果我不想使用对话框,我该怎么做?