gpt4 book ai didi

java - 在 Android 中的 TextView 上设置文本时出错

转载 作者:行者123 更新时间:2023-12-02 00:07:16 25 4
gpt4 key购买 nike

我不断收到空指针错误,但我不明白为什么。我是否遗漏了一些非常明显的东西?

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"); 那么程序不会崩溃。有想法吗?

最佳答案

TextView 属于对话框..所以你应该使用对话框的 View ..

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

关于java - 在 Android 中的 TextView 上设置文本时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13582204/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com