Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/359.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
getActionBar().setDisplayHomeAsUpEnabled(true),->;无法解析java.lang.NullPointerException_Java_Android_Xml_Nullpointerexception - Fatal编程技术网

getActionBar().setDisplayHomeAsUpEnabled(true),->;无法解析java.lang.NullPointerException

getActionBar().setDisplayHomeAsUpEnabled(true),->;无法解析java.lang.NullPointerException,java,android,xml,nullpointerexception,Java,Android,Xml,Nullpointerexception,我有以下问题: getActionBar().setDisplayHomeAsUpEnabled(true) java.lang.NullPointerException 我知道有很多帖子都有同样的问题,但这一个我可以解决。我尝试了我找到的所有解决方案,但没有人帮助我,我使用这个片段和抽屉(Android) 代码如下:MainActivity.java package com.example.erik.test2; import android.app.Activity; impo

我有以下问题:
getActionBar().setDisplayHomeAsUpEnabled(true)

java.lang.NullPointerException

我知道有很多帖子都有同样的问题,但这一个我可以解决。我尝试了我找到的所有解决方案,但没有人帮助我,我使用这个片段和抽屉(Android)

代码如下:MainActivity.java

    package com.example.erik.test2;


import android.app.Activity;

import android.os.Bundle;
import android.support.design.widget.NavigationView;
import android.support.v4.app.ActionBarDrawerToggle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v4.view.GravityCompat;
import android.support.v4.widget.DrawerLayout;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.view.MenuItem;
import android.view.View;
import android.view.Window;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.TextView;


public class MainActivity extends AppCompatActivity {
    private DrawerLayout mDrawer;
    private Toolbar toolbar;
    private ActionBarDrawerToggle mDrawerToggle;


    @Override
    protected void onCreate(Bundle savedInstanceState) {
       //requestWindowFeature(Window.FEATURE_ACTION_BAR);
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);


        // Set a Toolbar to replace the ActionBar.
        toolbar = (Toolbar) findViewById(R.id.toolbar);
        //setSupportActionBar(toolbar);
       // getSupportActionBar().setDisplayHomeAsUpEnabled(true);


        // Find our drawer view
        mDrawer = (DrawerLayout) findViewById(R.id.drawer_layout);
        NavigationView nvDrawer = (NavigationView) findViewById(R.id.nvView);
        setupDrawerContent(nvDrawer);

        //---- Open Drawer on clic icon BUT CAUSE NULLPOINT EXEPTION--- //
       //*
        getActionBar().setDisplayHomeAsUpEnabled(true);
        getActionBar().setHomeButtonEnabled(true);//*/

        /*
        getSupportActionBar().setDisplayHomeAsUpEnabled(true);
        getSupportActionBar().setHomeButtonEnabled(true);//*/
//*
       mDrawerToggle = new ActionBarDrawerToggle(this, mDrawer,  R.drawable.logo_tam, R.string.ouverture, R.string.fermeture) {
            public void onDrawerClosed(View view) {
                getActionBar().setTitle(R.string.titre);
                invalidateOptionsMenu();
            }

            public void onDrawerOpened(View drawerView) {
                getActionBar().setTitle(R.string.titre_apres_ouverture);
                invalidateOptionsMenu();
            }
        };
        mDrawer.setDrawerListener(mDrawerToggle); //*

        //-----------------------------------------------------------------------------------------------------------------
/*
        mDrawerToggle = new ActionBarDrawerToggle(this, mDrawer, R.drawable.logo_tam, R.string.ouverture, R.string.fermeture ) {
            public void onDrawerClosed(View view) {
                super.onDrawerClosed(view);
                getActionBar().setTitle("Fermer");
            }
            public void onDrawerOpened(View drawerView) {
                super.onDrawerOpened(drawerView);
                getActionBar().setTitle("Ouvert");
            }
        };
        // Set the drawer toggle as the DrawerListener
        mDrawer.setDrawerListener(mDrawerToggle);*/

       // getActionBar().setDisplayHomeAsUpEnabled(true);
        //getActionBar().setHomeButtonEnabled(true);
    }


    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // The action bar home/up action should open or close the drawer.
        switch (item.getItemId()) {
            case android.R.id.home:
                mDrawer.openDrawer(GravityCompat.START);
                return true;
        }
        return super.onOptionsItemSelected(item);
    }

    // Make sure this is the method with just `Bundle` as the signature
    @Override
    protected void onPostCreate(Bundle savedInstanceState) {
        super.onPostCreate(savedInstanceState);
    }

    private void setupDrawerContent(NavigationView navigationView) {
        navigationView.setNavigationItemSelectedListener(
                new NavigationView.OnNavigationItemSelectedListener() {
                    @Override
                    public boolean onNavigationItemSelected(MenuItem menuItem) {
                        selectDrawerItem(menuItem);
                        return true;
                    }
                });
    }

    public void selectDrawerItem(MenuItem menuItem) {
        // Create a new fragment and specify the planet to show based on
        // position
        Fragment fragment = null;
        Class fragmentClass;
        switch(menuItem.getItemId()) {
            case R.id.nav_first_fragment:
                fragmentClass = FirstFragment.class;
                break;
            case R.id.nav_second_fragment:
                fragmentClass = SecondFragment.class;
                break;
            case R.id.nav_third_fragment:
                fragmentClass = ThirdFragment.class;
                break;
            default:
                fragmentClass = FirstFragment.class;
        }

        try {
            fragment = (Fragment) fragmentClass.newInstance();
        } catch (Exception e) {
            e.printStackTrace();
        }

        // Insert the fragment by replacing any existing fragment
        FragmentManager fragmentManager = getSupportFragmentManager();
        fragmentManager.beginTransaction().replace(R.id.flContent, fragment).commit();

        // Highlight the selected item, update the title, and close the drawer
        menuItem.setChecked(true);
        setTitle(menuItem.getTitle());
        mDrawer.closeDrawers();
    }

}
styles.xml的代码(我已经尝试将theme更改为theme.AppCompat.Light,但不起作用)


@颜色/原色
@颜色/原色暗
@颜色/颜色重音
toolbar.xml的代码

<android.support.v7.widget.Toolbar
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/toolbar"
    android:layout_height="wrap_content"
    android:layout_width="match_parent"
    android:fitsSystemWindows="true"
    android:minHeight="?attr/actionBarSize"
    app:theme="@style/Theme.AppCompat.Light"
    android:background="?attr/colorPrimaryDark">
</android.support.v7.widget.Toolbar>

代码活动_main.xml

<!-- This DrawerLayout has two children at the root  -->
<android.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <!-- This LinearLayout represents the contents of the screen  -->
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <!-- The ActionBar displayed at the top -->
        <!--  <include
              layout="@layout/toolbar"
              android:layout_width="match_parent"
              android:layout_height="wrap_content" /> -->

          <!-- The main content view where fragments are loaded -->
        <FrameLayout
            android:id="@+id/flContent"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
    </LinearLayout>

    <!-- The navigation drawer that comes from the left -->
    <!-- Note that `android:layout_gravity` needs to be set to 'start' -->
    <android.support.design.widget.NavigationView
        android:id="@+id/nvView"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:background="@android:color/white"
        app:menu="@menu/drawer_view"
        app:headerLayout="@layout/nav_header"
        />
</android.support.v4.widget.DrawerLayout>

和舱单代码

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.erik.test2">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

    </application>

</manifest>


我尝试了许多主题选项,但在我的活动中它不起作用。在评论中,您可以看到我尝试的所有测试。

糟糕的方法

使用弃用的代码。避免调用ActionBarActivity

<include
          layout="@layout/toolbar"
          android:layout_width="match_parent"
          android:layout_height="wrap_content" />
忠告
由于版本为22.1.0,因此不推荐使用ActionBarActivity类。 您应该使用AppCompativeActivity

你越来越

getActionBar().setDisplayHomeAsUpEnabled(true); java.lang.NullPointerException

首先注释掉这一行

<include
          layout="@layout/toolbar"
          android:layout_width="match_parent"
          android:layout_height="wrap_content" />
您可以更改主题,因为您正在使用
NoActionBar

parent="Theme.AppCompat.Light.NoActionBar"
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
 getSupportActionBar().setHomeButtonEnabled(true);
使用工具栏替换ActionBar非常简单 并从确保活动扩展开始 行动积极性。还要确保此活动的主题是 Theme.AppCompat.NoActionBar或 Theme.AppCompat.Light.NoActionBar

请检查
\SO
回答


坏方法

使用弃用的代码。避免调用ActionBarActivity

<include
          layout="@layout/toolbar"
          android:layout_width="match_parent"
          android:layout_height="wrap_content" />
忠告
由于版本为22.1.0,因此不推荐使用ActionBarActivity类。 您应该使用AppCompativeActivity

你越来越

getActionBar().setDisplayHomeAsUpEnabled(true); java.lang.NullPointerException

首先注释掉这一行

<include
          layout="@layout/toolbar"
          android:layout_width="match_parent"
          android:layout_height="wrap_content" />
您可以更改主题,因为您正在使用
NoActionBar

parent="Theme.AppCompat.Light.NoActionBar"
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
 getSupportActionBar().setHomeButtonEnabled(true);
使用工具栏替换ActionBar非常简单 并从确保活动扩展开始 行动积极性。还要确保此活动的主题是 Theme.AppCompat.NoActionBar或 Theme.AppCompat.Light.NoActionBar

请检查
\SO
回答

您有两种方法:
1.使用
getSupportActionBar()
代替
getActionBar()

2.将您的活动更改为扩展
ActionBarActivity

您有两种方法:
1.使用
getSupportActionBar()
代替
getActionBar()

2.将您的活动更改为扩展
ActionBarActivity

以这种方式执行

    // Set a Toolbar to replace the ActionBar.
    toolbar = (Toolbar) findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);

    // Find our drawer view
    mDrawer = (DrawerLayout) findViewById(R.id.drawer_layout);
    NavigationView nvDrawer = (NavigationView) findViewById(R.id.nvView);
    setupDrawerContent(nvDrawer);

    //---- Open Drawer on clic icon BUT CAUSE NULLPOINT EXEPTION--- //

    getSupportActionBar().setDisplayHomeAsUpEnabled(true);
    getSupportActionBar().setHomeButtonEnabled(true);
还要更改布局


用这种方法做

    // Set a Toolbar to replace the ActionBar.
    toolbar = (Toolbar) findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);

    // Find our drawer view
    mDrawer = (DrawerLayout) findViewById(R.id.drawer_layout);
    NavigationView nvDrawer = (NavigationView) findViewById(R.id.nvView);
    setupDrawerContent(nvDrawer);

    //---- Open Drawer on clic icon BUT CAUSE NULLPOINT EXEPTION--- //

    getSupportActionBar().setDisplayHomeAsUpEnabled(true);
    getSupportActionBar().setHomeButtonEnabled(true);
还要更改布局


getActionBar().setDisplayHomeAsUpEnabled(true)提供了NullPointerException,因为在styles.xml中,您提供了父主题.AppCompat.Light.NoActionBar,这意味着没有ActionBar

解决方案:

使用style.xml中给出的样式更改样式

    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>

        <item name="windowActionBar">false</item>
        <item name="windowNoTitle">true</item>
    </style>
如果这对您有帮助,请告诉我。

getActionBar()。setDisplayHomeAsUpEnabled(true)提供了NullPointerException,因为在styles.xml中,您提供了父主题.AppCompat.Light.NoActionBar,这意味着没有ActionBar

解决方案:

使用style.xml中给出的样式更改样式

    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>

        <item name="windowActionBar">false</item>
        <item name="windowNoTitle">true</item>
    </style>

如果这对您有帮助,请告诉我。

您没有获得操作栏,请取消对xml中以下代码的注释

   <!--  <include
              layout="@layout/toolbar"
              android:layout_width="match_parent"
              android:layout_height="wrap_content" /> -->


也使用默认主题当前您使用的是NoActionBar

如果您没有获得操作栏,请取消对xml中以下代码的注释

   <!--  <include
              layout="@layout/toolbar"
              android:layout_width="match_parent"
              android:layout_height="wrap_content" /> -->


同时使用默认主题当前您正在使用NoActionBar

您正在使用的是
AppCompat
。因此,请使用以下方法:

getSupportActionBar().setDisplayHomeAsUpEnabled(true);

您使用的是
AppCompat
。因此,请使用以下命令:

getSupportActionBar().setDisplayHomeAsUpEnabled(true);

当您使用support library中的
AppCompactActivity
时。因此,您需要使用
getSupportActionBar()

因为你给了NoActionBar主题。取消对工具栏的注释包括您需要添加的相关工具栏。或者使用ActionBar而不是NoActionBar提供主题。或者在布局中提供工具栏并添加它

<android.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <!-- This LinearLayout represents the contents of the screen  -->
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <!-- The ActionBar displayed at the top -->
           <include
              layout="@layout/toolbar"
              android:layout_width="match_parent"
              android:layout_height="wrap_content" />  

          <!-- The main content view where fragments are loaded -->
        <FrameLayout
            android:id="@+id/flContent"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
    </LinearLayout>

    <!-- The navigation drawer that comes from the left -->
    <!-- Note that `android:layout_gravity` needs to be set to 'start' -->
    <android.support.design.widget.NavigationView
        android:id="@+id/nvView"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:background="@android:color/white"
        app:menu="@menu/drawer_view"
        app:headerLayout="@layout/nav_header"
        />
</android.support.v4.widget.DrawerLayout>

使用支持库中的
AppCompactActivity
。因此,您需要使用
getSupportActionBar()

因为你给了NoActionBar主题。取消对工具栏的注释包括您需要添加的相关工具栏。或者使用ActionBar而不是NoActionBar提供主题。或者在布局中提供工具栏并添加它

<android.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <!-- This LinearLayout represents the contents of the screen  -->
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <!-- The ActionBar displayed at the top -->
           <include
              layout="@layout/toolbar"
              android:layout_width="match_parent"
              android:layout_height="wrap_content" />  

          <!-- The main content view where fragments are loaded -->
        <FrameLayout
            android:id="@+id/flContent"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
    </LinearLayout>

    <!-- The navigation drawer that comes from the left -->
    <!-- Note that `android:layout_gravity` needs to be set to 'start' -->
    <android.support.design.widget.NavigationView
        android:id="@+id/nvView"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:background="@android:color/white"
        app:menu="@menu/drawer_view"
        app:headerLayout="@layout/nav_header"
        />
</android.support.v4.widget.DrawerLayout>


您可以使用
getSupportActionBar()
删除评论表单setSupportActionBar(工具栏);然后使用getSupportActionBar()Hi,thx快速回答这个问题。我已经试过了,但是没有用,我把它放在了MainActivity的评论中