Android:即使在 setContentView 之后,findViewById 也会返回 Null

编程入门 行业动态 更新时间:2024-10-25 06:20:50
本文介绍了Android:即使在 setContentView 之后,findViewById 也会返回 Null的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

这是我在 LoginActivity 中的代码:

Here's my code in LoginActivity:

@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_login); if (savedInstanceState == null) { getSupportFragmentManager().beginTransaction() .add(R.id.container, new PlaceholderFragment())mit(); } loginButton = (Button)findViewById(R.id.loginButton); loginButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { onLoginButtonClicked(); } }); // Check if there is a currently logged in user // and they are linked to a Facebook account. ParseUser currentUser = ParseUser.getCurrentUser(); if ((currentUser != null) && ParseFacebookUtils.isLinked(currentUser)) { // Go to the main activity showHomeActivity(); } }

在 fragment_login.xml 中

in fragment_login.xml

<Button android:id="@+id/loginButton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerHorizontal="true" android:layout_centerVertical="true" android:text="@string/login_button" />

这是我运行应用程序时的日志:

And this is the log when i run the application:

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

问题是loginButton"是NULL,但我不知道为什么,因为我在setContentView之后调用了findViewById!

The problem is that "loginButton" is NULL but i don't know why, because i call the findViewById after the setContentView!

推荐答案

看来你的 Button 在片段布局中,所以 你的点击方法可能在你的片段中 (PlaceholderFragment) 而不是您的活动.您需要声明另一个 Class extends with Fragment..

It seems that your Button is in fragment layout, so your on click method might be in your fragment (PlaceholderFragment) instead of your activity. You need to declare another Class extends with Fragment..

首先,创建一个名为 PlaceHolderFragment 的新类.用 Fragment 扩展它,并将下面的代码添加到它:

First, create a new Class named PlaceHolderFragment. Extend it with Fragment and add this code below to it:

@Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View rootView = inflater.inflate(R.layout.fragment_login, container, false); // ... loginButton = (Button) rootView.findViewById(R.id.loginButton); loginButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { onLoginButtonClicked(); } }); // ... return rootView; } // put your method onLoginButtonClicked here.

然后,您的 MainActivity(名为 activity_main)的布局活动可能有一个 FrameLayout,其 id 容器如下所示:

Then, your layout activity for MainActivity (named activity_main) might have a FrameLayout with the id container like this:

<FrameLayout xmlns:android="schemas.android/apk/res/android" xmlns:tools="schemas.android/tools" android:id="@+id/container" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity" > <!-- other views --> </FrameLayout>

最后,您的 MainActivity 将只有:

Finally, your MainActivity will only have:

@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); if (savedInstanceState == null) { // you add you fragment here in id container getSupportFragmentManager().beginTransaction() .add(R.id.container, new PlaceholderFragment())mit(); } // ... without loginButton // and some more stuff }

更多推荐

Android:即使在 setContentView 之后,findViewById 也会返回 Null

本文发布于:2023-11-08 11:37:30,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1569259.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:也会   setContentView   Android   Null   findViewById

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!