我正在尝试对活动进行自定义对话并能够成功进行对话。
现在我想在单击活动按钮而不是设备后退按钮或外部单击时隐藏对话框。问题是 - 当对话框打开时,活动失去焦点,所以它没有点击按钮(我的想法)
这是对话框类的构造函数-
public CustomDialog(Context context) {
super(context);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.cus_dialog);
}
和 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="wrap_content"
android:background="@drawable/normal_border"
android:orientation="vertical"
android:padding="20dp" >
<TextView
android:id="@+id/delete_msg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:text="@string/delete_msg"
/>
<LinearLayout
android:id="@+id/work_phone_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/delete_msg"
android:layout_margin="10dp"
android:layout_marginTop="10dp"
android:orientation="horizontal" >
<Button
android:id="@+id/delete_yes_label"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="3"
android:background="@drawable/normal_border"
android:text="@string/yes"
android:textAppearance="@style/labels" />
<View
android:id="@+id/gap"
android:layout_width="0dp"
android:layout_height="3dp"
android:layout_weight="2"
/>
<Button
android:id="@+id/delete_no_label"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="3"
android:background="@drawable/normal_border"
android:text="@string/no"
android:textAppearance="@style/labels" />
</LinearLayout>
</RelativeLayout>
我试过了 -
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN);
但没有效果。我不知道这里发生了什么。请帮忙
更新- 我在 HTC(android 4.0) 上对其进行了测试,它在此设备上运行良好,但在 android 2.3 上无法运行