#android #dialog #nullpointerexception
#Android #диалоговое окно #исключение nullpointerexception
Вопрос:
У меня ошибка в onCreateDialog () NullPointerException в этом коде:
import android.app.Activity;
import android.app.Dialog;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class More extends Activity{
static int DIALOG_ID=0;
Dialog dialog = null;
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.myfavourate);
//showDialog(DIALOG_ID);
}
protected Dialog onCreateDialog(int id) {
switch(id) {
case 0:
// do the work to define the pause Dialog
dialog = new Dialog(this);
dialog.setContentView(R.layout.more);
dialog.setTitle("Please Select One:");
Button btn_setting = (Button)findViewById(R.id.btn_more_setting);
Button btn_about = (Button)findViewById(R.id.btn_more_about);
Button btn_privacy = (Button)findViewById(R.id.btn_more_privacy);
Button btn_cancel = (Button)findViewById(R.id.btn_more_cancel);
btn_setting.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
Intent intent = new Intent(More.this,SettingActivity.class);
startActivity(intent);
}
});
btn_about.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
Intent intent = new Intent(More.this,About.class);
startActivity(intent);
}
});
btn_privacy.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
Intent intent = new Intent(More.this,Privacy_Policy.class);
startActivity(intent);
}
});
btn_cancel.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
More obj = new More();
obj.finish();
}
});
break;
default:
dialog = null;
}
return dialog;
}
}
Комментарии:
1. вы должны указать, где возникло исключение nullpointerexception.
Ответ №1:
Исправить
Button btn_setting = (Button)findViewById(R.id.btn_more_setting);
Для
Button btn_setting = (Button) dialog.findViewById(R.id.btn_more_setting);
И сделайте это для других кнопок.
Хитрость в том, что когда вы просто вызываете findViewById , он вызывается для действия, и у вас не раздуваются кнопки диалогового окна. Вместо этого они отображаются в диалоговом окне, и вы должны искать их в диалоговом окне.