カスタム ダイアログを作成しようとしていますが、問題が発生しています。
ユーザーがメニュー ボタンを押してオプションを選択すると、カスタム ダイアログが表示されます。
コードは次のとおりです。
@Override
public boolean onCreateOptionsMenu(Menu menu) {
super.onCreateOptionsMenu(menu);
MenuInflater myMenu = getMenuInflater();
myMenu.inflate(R.menu.menu, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// TODO Auto-generated method stub
switch (item.getItemId()) {
case R.id.email:
Context mContext = getApplicationContext();
Dialog dialog = new Dialog(mContext);
dialog.setContentView(R.layout.email);
dialog.setTitle("Custom Dialog");
dialog.show();
break;
case R.id.info:
// Todo something
break;
}
return super.onOptionsItemSelected(item);
}
そしてR.layout.email
、これは次のとおりです。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TextView
android:id="@+id/emailTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="4dp"
android:text="@string/emailTitle" />
<MultiAutoCompleteTextView
android:id="@+id/multiAutoCompleteTextView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="4dp" >
<requestFocus />
</MultiAutoCompleteTextView>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="4" >
<TextView
android:id="@+id/emailTV1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1" />
<Button
android:id="@+id/emailBsend"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:padding="4dp"
android:text="@string/emailSend" />
<Button
android:id="@+id/emailBcancel"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:padding="4dp"
android:text="@string/emailCancel" />
<TextView
android:id="@+id/emailTV2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1" />
</LinearLayout>
</LinearLayout>
次のエラーが表示されます。
android.view.WindowManager$BadTokenException: Unable to add window -- token null is not for an application
私は何を間違っていますか?