对话框上的EditText不返回任何文本

时间:2017-02-15 17:46:41

标签: java android string android-edittext

我发现错误太累了。我没有发现任何错误,但我没有从editText获取任何文本。请查看以下代码:

activity_pwd.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout_root"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="10dp" >

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Enter PIN "
    android:textAppearance="?android:attr/textAppearanceLarge" />

<EditText
    android:id="@+id/pwdValue"
    android:layout_width="match_parent"
    android:maxLength="4"
    android:maxLines="1"
    android:inputType="numberPassword"
    android:layout_height="wrap_content">
</EditText>
</LinearLayout>

我在 MainActivity onCreate 方法上调用了 LockImmediately(this);

    public void LockImmediately(Context context) {
    if (lock_app) {
        View myview = LayoutInflater.from(context).inflate(R.layout.activity_pwd,null);
        enterPWD  = (EditText) myview.findViewById(R.id.pwdValue);

        AlertDialog alertDialog = new AlertDialog.Builder(this).setCancelable(false)
                .setView(R.layout.activity_pwd).setPositiveButton("OK", new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialog, int which) {
                        String user_text = enterPWD.getText().toString();
                        Log.d("onCreate pws", " i "+user_text);
                        if (pwd.equals(user_text)) {
                            dialog.dismiss();
                            Log.d("onCreate", "Work done");
                        } else {
                            dialog.dismiss();
                            MainActivity.this.finish();
                        }
                    }
                }).create();
        alertDialog.show();
    }
}

Log.d

 02-15 23:15:30.840 29379-29379/com.developersqueen.wishlater D/onCreate: onCreate
 02-15 23:15:37.021 29379-29379/com.developersqueen.wishlater D/onCreate pws:  i 
 02-15 23:15:45.427 29379-29379/com.developersqueen.wishlater D/onCreate:  onCreate
 02-15 23:15:49.026 29379-29379/com.developersqueen.wishlater D/onCreate pws:  i 

你可以看到上面的日志我将edittext值连接到&#34; i&#34;但它没有返回任何价值..我已经尝试清除数据,unistalling应用程序,清理,构建一切但总是相同的结果!任何帮助将不胜感激..

3 个答案:

答案 0 :(得分:1)

当您将视图设置为AlertDialog时,您应该设置视图,您可以在其中找到EditText的ID。

您已使用 myview 查找EditText的ID,但您尝试从Activity中获取myView,而不是从Dialog中获取。

如果您将视图设置为 myview ,则可以从 enterPWD EditText中获取文字。

AlertDialog alertDialog = new AlertDialog.Builder(this).setCancelable(false)
                .setView(myview).setPositiveButton("OK", new DialogInterface.OnClickListener() {
...
}

您应该为Activity和Dialog本身创建单独的布局。不要为两者使用一种布局。

答案 1 :(得分:0)

你夸大View并放弃它,

View myview = LayoutInflater.from(context).inflate(R.layout.activity_pwd,null);不是Dialog的View,它是一个无用的实例。

您将布局的ID传递给对话框,该对话框会在.show()中对其自身的版本进行膨胀。 请直接在alertDialog.findViewById(R.id.pwdValue)使用onClick(..)

答案 2 :(得分:0)

试试这个

    public void LockImmediately(Context context) {
    if (lock_app) {
        AlertDialog alertDialog = new   AlertDialog.Builder(this).setCancelable(false)
                .setView(R.layout.activity_pwd).setPositiveButton("OK", new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialog, int which) {
                            EditText enterPWD  = (EditText) myview.findViewById(R.id.pwdValue);
                            String user_text = enterPWD.getText().toString();
                            Log.d("onCreate pws", " i "+user_text);
                            if (pwd.equals(user_text)) {
                                dialog.dismiss();
                                Log.d("onCreate", "Work done");
                            } else {
                                dialog.dismiss();
                                MainActivity.this.finish();
                            }
                        }
                    }).create();
            alertDialog.show();
        }
    }