0

我不断收到空指针错误,但我不知道为什么。有什么非常明显的我想念的吗?

final Dialog d = new Dialog(Start.this);
        // dialog.requestWindowFeature((int) Window.FEATURE_NO_TITLE);
        d.requestWindowFeature((int) android.view.Window.FEATURE_NO_TITLE);

        d.setContentView(R.layout.popuptwo);
        WindowManager.LayoutParams lp = new WindowManager.LayoutParams();
        lp.copyFrom(d.getWindow().getAttributes());
        lp.width = WindowManager.LayoutParams.MATCH_PARENT;
        lp.height = WindowManager.LayoutParams.MATCH_PARENT;
        d.show();

        d.getWindow().setAttributes(lp);
        TextView totaltxt = (TextView) findViewById(R.id.totaltxt);
            totaltxt.setText("Test text");

如果我删除totaltxt.setText("Test text");,那么程序不会崩溃。想法?

4

3 回答 3

3

文本视图属于对话框..所以你应该使用对话框的视图..

TextView totaltxt = (TextView) d.findViewById(R.id.totaltxt);
于 2012-11-27T10:32:04.077 回答
0

做就是了..TextView totaltxt = (TextView) d.findViewById(R.id.totaltxt); totaltxt.setText("Test text");

于 2012-11-27T10:34:00.393 回答
0

因为它无法获得对话框的视图,所以,

替换这一行——

  TextView totaltxt = (TextView) findViewById(R.id.totaltxt);

这样 -

  TextView totaltxt = (TextView) d.findViewById(R.id.totaltxt);

这里 d 是你的对话对象。

于 2012-11-27T10:34:18.263 回答