Android 仅在添加其他不相关的代码后,方法出错

Android 仅在添加其他不相关的代码后,方法出错,android,android-studio,fragment-tab-host,Android,Android Studio,Fragment Tab Host,不知道该怎么看待这个问题。我为选项卡设置创建的这个方法称为tabSetUp(),我不久前创建了这个方法,并调用了我的onCreate方法,从那时起它就成功地工作了。现在,我突然在我的主要活动的另一个区域添加了代码,现在我得到了一个应用程序崩溃,说这是由我的选项卡设置方法引起的。没有道理。我错过什么了吗?我添加的新代码没有错误,但有黄色警告,表示可能存在空指针异常(我不太理解)。为什么我的应用程序崩溃了?谢谢你的帮助。LogCat在下面 MainSelectorActivity.java pack

不知道该怎么看待这个问题。我为选项卡设置创建的这个方法称为
tabSetUp()
,我不久前创建了这个方法,并调用了我的
onCreate
方法,从那时起它就成功地工作了。现在,我突然在我的主要活动的另一个区域添加了代码,现在我得到了一个应用程序崩溃,说这是由我的选项卡设置方法引起的。没有道理。我错过什么了吗?我添加的新代码没有错误,但有黄色警告,表示可能存在空指针异常(我不太理解)。为什么我的应用程序崩溃了?谢谢你的帮助。LogCat在下面

MainSelectorActivity.java

package com.azurespot.disastertimer.app;

import android.content.Intent;
import android.content.SharedPreferences;
import android.content.res.Resources;
import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentTabHost;
import android.view.View;
import android.widget.Button;
import android.widget.TabWidget;

import com.azurespot.disastertimer.app.tabs.GodzillaTab;
import com.azurespot.disastertimer.app.tabs.NuclearTab;
import com.azurespot.disastertimer.app.tabs.TsunamiTab;
import com.azurespot.disastertimer.app.tabs.VolcanoTab;
import com.azurespot.disastertimer.app.tabs.ZombieTab;
import com.azurespot.disastertimer.app.themedactivities.GodzillaThemedActivity;
import com.azurespot.disastertimer.app.themedactivities.NuclearThemedActivity;
import com.azurespot.disastertimer.app.themedactivities.TsunamiThemedActivity;
import com.azurespot.disastertimer.app.themedactivities.VolcanoThemedActivity;
import com.azurespot.disastertimer.app.themedactivities.ZombieThemedActivity;


public class MainSelectorActivity extends FragmentActivity {

    Resources resrc;
    FragmentTabHost tabHost;
    private Button btnStart;
    public static final String TABTIMER = "Tab_and_Timer";
    private String selectedTab;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main_selector);

        tabSetUp();

        btnStart = (Button) findViewById(R.id.btnStart);
        btnStart.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {
                goToThemedActivity();
            }
        });

        tabListener();
        changeTabIndicators();
        tabAndTimerPersist();

    }

    public void tabSetUp() {
        resrc = getResources();

        // TabHost setup & functionality
        tabHost = (android.support.v4.app.FragmentTabHost)findViewById(android.R.id.tabhost);
        tabHost.setup(this, getSupportFragmentManager(), R.id.realtabcontent);

        //------Zombie tab------
        //Creates tab and sets zombie icon in tab
        tabHost.addTab(tabHost.newTabSpec("zombie").setIndicator("",
                        getResources().getDrawable(R.drawable.ic_tab_zombie_selected)),
                ZombieTab.class, null);

        //------Nuclear tab------
        //Creates tab and sets nuclear icon in tab
        tabHost.addTab(tabHost.newTabSpec("nuclear").setIndicator("",
                        getResources().getDrawable(R.drawable.ic_tab_nuclear_selected)),
                NuclearTab.class, null);

        //------Tsunami tab------
        //Creates tab and sets tsunami icon in tab
        tabHost.addTab(tabHost.newTabSpec("tsunami").setIndicator("",
                        getResources().getDrawable(R.drawable.ic_tab_tsunami_selected)),
                TsunamiTab.class, null);

        //------Godzilla tab------
        //Creates tab and sets tsunami icon in tab
        tabHost.addTab(tabHost.newTabSpec("godzilla").setIndicator("",
                        getResources().getDrawable(R.drawable.ic_tab_godzilla_selected)),
                GodzillaTab.class, null);

        //------Volcano tab------
        //Creates tab and sets volcano icon in tab
        tabHost.addTab(tabHost.newTabSpec("volcano").setIndicator("",
                        getResources().getDrawable(R.drawable.ic_tab_volcano_selected)),
                VolcanoTab.class, null);

        //set Zombie tab as default (zero based)
        tabHost.setCurrentTab(0);
    }

    // Sets up the tabs to return a value, based on which one is currently selected.
    // The int values will be used in the Start button's onClick to go to the corresponding activity.
    public void tabListener() {
        tabHost.setOnTabChangedListener(new FragmentTabHost.OnTabChangeListener() {
            @Override
            public void onTabChanged(String tabId) {
                selectedTab = tabId;
            }
        });
    }

    public void changeTabIndicators() {
        tabHost = (android.support.v4.app.FragmentTabHost)findViewById(R.id.tabhost);
        TabWidget widget = tabHost.getTabWidget();
        for(int i = 0; i < widget.getTabCount(); i++) {
            View v = widget.getChildTabViewAt(i);

//            // Look for the title view to ensure this is an indicator and not a divider.
//            TextView tv = (TextView)v.findViewById(android.R.id.title);
//            if(tv == null) {
//                continue;
//            }
            v.setBackgroundResource(R.drawable.tab_selector_color);
        }
    }

    public void goToThemedActivity() {

        if (selectedTab.equals("zombie")) {
            Intent i = new Intent(MainSelectorActivity.this, ZombieThemedActivity.class);
            startActivity(i);
        } else if (selectedTab.equals("nuclear")) {
            Intent j = new Intent(MainSelectorActivity.this, NuclearThemedActivity.class);
            startActivity(j);
        } else if (selectedTab.equals("tsunami")) {
            Intent k = new Intent(MainSelectorActivity.this, TsunamiThemedActivity.class);
            startActivity(k);
        } else if (selectedTab.equals("godzilla")) {
            Intent l = new Intent(MainSelectorActivity.this, GodzillaThemedActivity.class);
            startActivity(l);
        } else if (selectedTab.equals("volcano")) {
            Intent m = new Intent(MainSelectorActivity.this, VolcanoThemedActivity.class);
            startActivity(m);
        }
    }

    @Override
    protected void onPause() {
        super.onPause();
        tabAndTimerPersist();
    }

    private void tabAndTimerPersist() {

        SharedPreferences prefs = getSharedPreferences(TABTIMER, MODE_PRIVATE);

        SharedPreferences.Editor editor = prefs.edit();
        editor.putInt("zombie", 0);
        editor.putInt("nuclear", 0);
        editor.putInt("tsunami", 0);
        editor.putInt("godzilla", 0);
        editor.putInt("volcano", 0);
        editor.commit();
    }
}
activity\u main\u selector.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:background="#7d8794"
    tools:context="com.azurespot.disastertimer.app.MainSelectorActivity">

    <android.support.v4.app.FragmentTabHost
        android:id="@+id/tabhost"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

        <LinearLayout
            android:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="match_parent" >

            <TabWidget
                android:id="@android:id/tabs"
                android:orientation="horizontal"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_weight="0" />

            <FrameLayout
                android:id="@android:id/tabcontent"
                android:layout_width="0dp"
                android:layout_height="0dp"
                android:layout_weight="0"
                android:measureAllChildren="true"/>

            <FrameLayout
                android:id="@+id/realtabcontent"
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_weight="1" />

        </LinearLayout>
    </android.support.v4.app.FragmentTabHost>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="200dp"
        android:orientation="horizontal"
        android:layout_marginTop="180dp"
        android:gravity="center_horizontal">

        <NumberPicker
            android:id="@+id/numberPicker1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="16dp"
            android:layout_marginTop="0dp" />

        <NumberPicker
            android:id="@+id/numberPicker2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="14dp"
            android:layout_marginTop="0dp" />

        <NumberPicker
            android:id="@+id/numberPicker3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="14dp"
            android:layout_marginTop="0dp" />

    </LinearLayout>

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="80dp"
        android:layout_alignParentBottom="true"
        android:gravity="center" >

    <Button
        android:id="@+id/btnStart"
        android:layout_gravity="center"
        android:layout_marginBottom="20dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#ed872d"
        android:text="@string/btn_start"
        android:onClick="saveAndStartTimer"/>

    </RelativeLayout>

</RelativeLayout>

将此更改为

 tabHost = (android.support.v4.app.FragmentTabHost)findViewById(android.R.id.tabhost);


你在哪一行出错了?还必须检查xml文件中
FragmentTabHost
的ID是否为
tabhost
。我在项目本身中没有发现任何错误(没有红色),但LogCat在
tabSetUp()
方法中显示空指针,并且在
onCreate()
中调用该方法。或者你的意思是我在哪里得到黄色警告?是的,FragmentTabHost的ID是tabhost。我也会发布我的xml。在这里显示你的
activity\u main\u选择器
xml文件。谢谢,我刚刚在上面添加了它。哦,非常感谢!!我一定是在试图修复其他错误时意外更改了此设置。使用这些支持库强制转换时总是很挑剔,有时您必须包含完整的库名。。。但我一定是用错了词。再次感谢@诺尼亚。你好早晨
 tabHost = (android.support.v4.app.FragmentTabHost)findViewById(android.R.id.tabhost);
 tabHost = (FragmentTabHost)findViewById(R.id.tabhost);