gpt4 book ai didi

android - 在 DialogFragment 中,onCreate 应该做什么?

转载 作者:行者123 更新时间:2023-11-29 16:13:47 27 4
gpt4 key购买 nike

我目前正在摆弄 DialogFragment 以学习使用它。我假设与 onCreateView() 相比,onCreate() 可以做到这一点:

public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
testTextView.setText("SUCCESS!"); //ERROR HERE
}

但我错了。不知道为什么它不起作用。当我注释掉 testTextView.setText("Success!"); 时,错误消失了错误是 NullPointerException,然后它只是标记第 39 行,这是有问题的代码行所在的位置。非常感谢任何澄清。

编辑:

public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState){
View testView = (View)inflater.inflate(R.layout.test_dialog_file, container, false);
//instantiated testTextView globally
testTextView = (TextView)testView.findViewById(R.id.set_text);
testTextView.setText("SUCCESS!");
return testView;
}

最佳答案

testTextView 没有指向任何对象,所以尝试类似的东西

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

编辑:

如果您看到 lifecycle of a fragment ,它说 onCreateView 被调用 after onCreate 因此你的 onCreate 没有对你的对象的任何引用,那是你布局中的 textview

关于android - 在 DialogFragment 中,onCreate 应该做什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11046075/

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