gpt4 book ai didi

android - 当我在 onCreate() 中调用 findViewById() 时,它返回 null

转载 作者:IT老高 更新时间:2023-10-28 23:06:08 26 4
gpt4 key购买 nike

我的第一个 Android 应用程序的 findViewById 出现问题。我正在尝试调用此函数,但总是返回 null。

我的应用有 2 个 Activity 。在第二个 Activity (activity_display_message)中,我有这个代码:

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_display_message);

if (savedInstanceState == null) {
getSupportFragmentManager().beginTransaction()
.add(R.id.container, new PlaceholderFragment())
.commit();
}

//Obtener el mensaje desde el intent en MainActivity
Intent intent = getIntent();
String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);

//Buscar el textview en la vista
TextView textView = (TextView) findViewById(R.id.texto);
textView.setText(message);
}

这是fragment_display_message.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context="com.example.app.DisplayMessageActivity$PlaceholderFragment">

<TextView
android:id="@+id/texto"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

我不知道为什么当我尝试执行 setText() 时它返回 NULL 并生成 NullPointerException。我正在调用正确的 Id 并在 XML 上声明它。我在 onCreate() 上调用 setContextView()

对不起,如果这个问题太明显了(我认为我忽略了一些明显的东西),但我是 android 开发的新手。

编辑:Logcat 错误:

02-10 10:25:58.960    1031-1031/com.example.app E/AndroidRuntime﹕ FATAL EXCEPTION: main
Process: com.example.app, PID: 1031
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.app/com.example.app.DisplayMessageActivity}: java.lang.NullPointerException
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2195)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2245)
at android.app.ActivityThread.access$800(ActivityThread.java:135)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1196)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:136)
at android.app.ActivityThread.main(ActivityThread.java:5017)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:515)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:779)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:595)
at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.NullPointerException
at com.example.app.DisplayMessageActivity.onCreate(DisplayMessageActivity.java:35)
at android.app.Activity.performCreate(Activity.java:5231)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1087)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2159)

          

编辑:

问题解决了。只需将代码从 onCreate() 移动到 onCreateView() 并编辑引用。

onCreate() 将是默认设置。

    @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_display_message);

if (savedInstanceState == null) {
getSupportFragmentManager().beginTransaction()
.add(R.id.container, new PlaceholderFragment())
.commit();
}
}

以及PlaceholderFragment上的onCreateView():

        @Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_display_message, container, false);

//Obtener el mensaje desde el intent en MainActivity
Intent intent = getActivity().getIntent();
String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);

//Buscar el textview en la vista
TextView textView = (TextView) rootView.findViewById(R.id.texto);
textView.setText(message);

return rootView;
}

最佳答案

Activity findViewById() 在使用 setContentView() 设置的 Activity View 层次结构中搜索给定的 View ID。您似乎正在寻找的 View 位于 fragment 中,而不是在 Activity 层次结构中(尚未)。 fragment 事务也不是即时的,因此即使您将其添加到 Activity 层次结构中的容器中,它也不会立即附加到那里,而是仅在处理事务时才附加。

理论上可以使用executePendingTransactions() 同步执行待处理的 fragment 事务。 .但是,最好只将触及 fragment View 的代码移到其onCreateView() 中。 . fragment 和它们的宿主 Activity 应该是相对独立的,所以应该避免访问 fragment 内部的 Activity 。

关于android - 当我在 onCreate() 中调用 findViewById() 时,它返回 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21680927/

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