这是我的email_dialog.xml布局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TableRow
android:id="@+id/tableRow0"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</TableRow>
<TableRow
android:id="@+id/tableRow1"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<EditText
android:id="@+id/txtEmailAddress5"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textEmailAddress"
android:text="mFry@smithmicro.com"/>
</TableRow>
<TableRow
android:id="@+id/tableRow2"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/btnCancelEmail"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:width="200px"
android:text="Cancel" />
<Button
android:id="@+id/btnOkEmail"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:width="200px"
android:text="Email" />
</TableRow>
这是我调用和使用它的方法:
void showEmailDialog() {
// Final prevents the error in the newest onClick callback.
final Dialog dialog = new Dialog(this);
dialog.setContentView(R.layout.email_dialog);
dialog.setTitle("Enter Email Address");
dialog.setCancelable(true);
final EditText txtEA = (EditText) findViewById(R.id.txtEmailAddress5);
final Button cancelButton = (Button) dialog.findViewById(R.id.btnCancelEmail);
final Button sendButton = (Button) dialog.findViewById(R.id.btnOkEmail);
// set up cancel button
cancelButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
dialog.dismiss();
}
});
// set up send button
sendButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Log.d(TAG, "sendButton onClick()");
String emailAddress;
Log.d(TAG, "sendButton onClick() - String emailAddress");
Log.d(TAG,
"sendButton onClick() - txtEmailAddress = (EditText)");
emailAddress = txtEA.getText().toString();
Log.d(TAG,
"sendButton onClick() - emailAddress = getText().toString();");
sendEmail(emailAddress);
dialog.dismiss();
}
});
dialog.show();
//
}
正确定义TAG,无需担心.
我不断得到:
txtEA.getText().toString()
引发空点异常.我有正确的R.id值,我已经验证了50次,我在尝试访问EditText之前验证了setContentView()是否正确,并且两个带有setOnClickListener的Button都可以正常工作.
我绝对可以在这上面换另一只眼!我已经研究了类似的问题并尝试了解决方案,但是没有一个解决了我的问题!
解决方法:
你应该做这个:
final EditText txtEA = (EditText) dialog.findViewById(R.id.txtEmailAddress5);
您忘记在对话框中搜索txtEA.