我接受并拒绝按钮,两者都关闭对话框。我还有一个条件,如果用户没有操作,对话框将被删除,但删除后会重绘。经过彻底调查后,我发现删除后立即重新绘制了对话框。这是我的代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/dialog_layout_root"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:background="@drawable/custom_dialog_background">
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
android:id="@+id/bAcceptRequest"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/acceptrequest"
android:background="@drawable/blue_button"
/>
<Button
android:id="@+id/bDeclineRequest"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/rejectrequest"
android:background="@drawable/blue_button"
/>
</LinearLayout>
这是我的自定义对话框xml布局文件:
var arrNum = [0,1,0,0];
arrNum.sort(function(a, b) {
return a == 0 ? 1 : 0;
});
有人可以解释为什么重绘对话框以及如何停止这种行为吗?