使用AlertDialog按钮开始新活动

时间:2013-04-16 18:59:29

标签: java android android-activity alertdialog

我正在尝试使用alertdialog来允许用户按下ok按钮并打开一个新活动。以下是我的代码:

我的第一个活动

 AlertDialog.Builder dialog=    new AlertDialog.Builder(context);
                dialog.setTitle("Welcome");
                dialog.setMessage("Please click ok");
                dialog.setPositiveButton("OK", new    DialogInterface.OnClickListener() {

                    @Override
                    public void onClick(DialogInterface dialog, int which) {
                        Intent intent = new Intent("com.thewildOnz.myResult");
                    startActivity(intent);
                    }
                });
                dialog.show();    

新活动

public class myResult extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.result);

清单:

</activity>
           <activity
        android:name=".myResult"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="com.thewildOnz.myResult" />

            <category android:name="android.intent.category.DEFUALT" />
        </intent-filter>
    </activity>

然而我收到错误:

java.lang.NullPointerException

我错过了什么?

2 个答案:

答案 0 :(得分:2)

您需要在.create()上致电AlertDialog

AlertDialog.Builder builder= new AlertDialog.Builder(context);
builder.setTitle("Welcome");
builder.setMessage("Please click ok");
builder.setPositiveButton("OK", new DialogInterface.OnClickListener() 
{
    @Override
    public void onClick(DialogInterface dialog, int which) 
    {
        Intent intent = new Intent("com.thewildOnz.myResult");
        startActivity(intent);
    }
});
AlertDialog dialog = builder.create();
dialog.show();

您也可能错误地使用了新的Intent("")。除非您将"com.thewildOnz.myResult"定义为操作,否则将失败。

你应该使用这个:

Intent intent = new Intent(this, com.thewildOnz.myResult.class);

答案 1 :(得分:0)

也许你输错了DEFAULT

        <category android:name="android.intent.category.DEFUALT" />