从对话框自定义布局获取值

时间:2019-02-14 08:09:23

标签: java android layout dialog

我想知道如何从添加到DialogFragment的布局中引用和获取视图的值 我能够像这样

将布局xml添加到我的DialogFragment中
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
    AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
    // Get the layout inflater
    LayoutInflater inflater = requireActivity().getLayoutInflater();

    // Inflate and set the layout for the dialog
    // Pass null as the parent view because its going in the dialog layout
    builder.setView(inflater.inflate(R.layout.dialog_signin, null))
    // Add action buttons
           .setPositiveButton(R.string.signin, new DialogInterface.OnClickListener() {
               @Override
               public void onClick(DialogInterface dialog, int id) {
                   // sign in the user ...
               }
           })
           .setNegativeButton(R.string.cancel, new DialogInterface.OnClickListener() {
               public void onClick(DialogInterface dialog, int id) {
                   LoginDialogFragment.this.getDialog().cancel();
               }
           });
    return builder.create();
}

我通过这样的接口实现DialogFragment类

public class MainActivity extends FragmentActivity
                          implements NoticeDialogFragment.NoticeDialogListener{
    ...

    public void showNoticeDialog() {
        // Create an instance of the dialog fragment and show it
        DialogFragment dialog = new NoticeDialogFragment();
        dialog.show(getSupportFragmentManager(), "NoticeDialogFragment");
    }

    // The dialog fragment receives a reference to this Activity through the
    // Fragment.onAttach() callback, which it uses to call the following methods
    // defined by the NoticeDialogFragment.NoticeDialogListener interface
    @Override
    public void onDialogPositiveClick(DialogFragment dialog) {
        // User touched the dialog's positive button
        ...
    }

    @Override
    public void onDialogNegativeClick(DialogFragment dialog) {
        // User touched the dialog's negative button
        ...
    }
}

这是我的自定义布局

<?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">

    <EditText
        android:id="@+id/dialog_edit_text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:inputType="numberPassword"
        android:layout_margin="@dimen/dim_large"
        android:background="@drawable/shape_rectangle_transparent"/>

</RelativeLayout>

1 个答案:

答案 0 :(得分:0)

这就是我如何将Dialog EditText的字符串值解析到我的Activity

/* The activity that creates an instance of this dialog fragment must
 * implement this interface in order to receive event callbacks.
 * Each method passes the DialogFragment in case the host needs to query it. */
public interface DialogListener {
    void onConfirmPositiveClick(DialogFragment dialog, String password);
    void onConfirmNegativeClick(DialogFragment dialog);
}

onCreateDialog我使用LayoutInflater

引用了该视图
// Get the layout inflater
    LayoutInflater inflater = requireActivity().getLayoutInflater();
    final View view = inflater.inflate(R.layout.dialog_edit_text, null);

然后在正面点击监听器中,我从视图中引用EditText,获取EditText的String值并将其解析为正面点击监听器

.setPositiveButton(R.string.confirm, new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int id) {
                    EditText editText = view.findViewById(R.id.dialog_edit_text);
                    String password = editText.getText().toString();
                    // Send the positive button event back to the host activity
                    mListener.onConfirmPositiveClick(ConfirmationDialog.this, password);
                }
            })
相关问题