当屏幕方向更改时,无法保持自定义对话框按钮的状态



我使用DialogFragment创建了一个自定义对话框。它使用一个有一个按钮和一个edittext的视图。在我的edittext中,我实现了一个textwatcher,如果edittext中有值,按钮就会变为可见,否则它将保持不可见。

public  class ShowDialog extends DialogFragment {
private Button btnShowBalance;
private EditText balanceInquiryPinInput;
public ShowDialog(){
}
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
    LayoutInflater inflater = (LayoutInflater) getActivity().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    View myView = inflater.inflate(R.layout.fragment_balance_inquiry,null);
    btnShowBalance= (Button) myView.findViewById(R.id.btnShowBalance);
    balanceInquiryPinInput = (EditText) myView.findViewById(R.id.et_balance_inquiry_pin);
    balanceInquiryPinInput.addTextChangedListener(new TextWatcher() {
        @Override
        public void beforeTextChanged(CharSequence s, int start, int count, int after) {
        }
        @Override
        public void onTextChanged(CharSequence s, int start, int before, int count) {
            if(s.length() > 0){
                btnShowBalance.setVisibility(View.VISIBLE);
            }else{
                btnShowBalance.setVisibility(View.INVISIBLE);
            }
        }
        @Override
        public void afterTextChanged(Editable s) {
        }
    });
     btnShowBalance.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            showBalance(balanceInquiryPinInput,nameview,ShowDialog.this);
        }
    });

    // Use the Builder class for convenient dialog construction
    AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
    builder.setView(myView);
    // Create the AlertDialog object and return it
    return builder.create();
}
}

问题

当我将屏幕方向更改为(比方说)横向时,如果我在更改方向之前在编辑文本中键入了任何内容,那么我键入的内容在横向中仍然可见,我的按钮是可见的但它变得不可点击。我无法单击它。我必须通过按下对话框窗口外的某个位置或后退按钮来删除对话框,然后重新创建它

即使更改了屏幕方向,我如何才能使我的按钮保持可点击状态?

注意:在更改方向之前可以单击它。

编辑

我的对话框由一个按钮激活,该按钮位于片段中,而不是活动中。这个问题不是这个问题的重复,因为后者是一个活动的实现,在我看来,它的实现是不可靠的,它的状态是有问题的(按钮)

编辑自定义对话框布局的xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#044848"
>
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:gravity="center_horizontal"
    android:background="@drawable/check_balance"
    >
    <EditText
        android:layout_width="200dp"
        android:layout_height="wrap_content"
        android:id="@+id/et_balance_inquiry_pin"
        android:layout_marginTop="5dp"
        android:gravity="center"
        android:background="@drawable/enter_pin_textview"
        android:inputType="numberPassword"/>
    <Button
        android:layout_width="150dp"
        android:layout_height="wrap_content"
        android:text="OK"
        android:id="@+id/btnShowBalance"
        android:layout_marginTop="20dp"
        android:layout_marginBottom="10dp"
        android:textColor="@android:color/white"
        android:textSize="20sp"
        android:background="@drawable/show_balance_ok_button"
        android:visibility="invisible" />
</LinearLayout>

按钮被禁用的问题可能是由于调用视图在方向更改中被破坏,对话框不再起作用。因此,它可能仍然可见,但实际上是前一个视图被破坏前的一个工件。

您需要使用在创建对话框片段实例时保存该实例状态的方法。例如,您可以调用

setRetainInstanceState(true);

onCreateDialog方法中,以在屏幕方向更改时保留DialogFragment实例的状态。

您可能需要覆盖onDestroyView(),以防止在屏幕方向更改时对话框被破坏。像这个

@Override
public void onDestroyView() {
    if (getDialog() != null && getRetainInstance())
        getDialog().setDismissMessage(null);
    super.onDestroyView();
}

关于这个和其他片段方法的信息可以在这里找到。

如果要将Dialog中的click监听器添加到按钮中,则需要为onConfigurationChanged之后创建的新按钮对象添加onclick。

在xml中设置click监听器是解决以下问题的好方法:

所以在xml中点击如下:

<Button
android:id="@+id/addnote"
android:onClick="closeDialog"
/>

现在在活动中,点击您想要的位置

public void closeDialog(View view) {
dialogObject.dismiss();
} 

在xml中使用on click后,无需调用setOnClickListener

相关内容

  • 没有找到相关文章

最新更新