Tag: android edittext

Android警报对话框无法找到视图

我无法使用AlertDialog将文本传回给调用它的活动。 似乎问题是它在调用findViewByID时找不到合适的EditText,但我是Android的新手并且不知道为什么会这样。 代码如下: public class ModifyDialogFragment extends DialogFragment { /* 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 MDialogListener { public void onMDialogPositiveClick(String newValue); } […]