这是我的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次,我确认setContentView()
在我尝试访问EditText
之前,而setOnClickListener
的两个按钮完美无缺
我绝对可以用另一双眼睛!我挖了类似的问题并尝试了他们的解决方案,但没有一个解决了我的问题!
答案 0 :(得分:9)
你应该这样做:
final EditText txtEA = (EditText) dialog.findViewById(R.id.txtEmailAddress5);
您忘记在对话框中搜索txtEA
。
答案 1 :(得分:4)
final EditText txtEA = (EditText) dialog.findViewById(R.id.txtEmailAddress5);
您必须在findViewById
上致电dialog
。