android.Blick.InflateException: Binary XML file line #7: Error inflating class Toolbar

Ich versuche, mit ToolBar (Lollipop Widget) mit android.support.v7 Bibliothek.

Aber während der Ausführung einer app immer ein Fehler.

android.view.InflateException: Binary XML file line #7: Error inflating class Toolbar    

Mein Ziel ist es, eine navigation drawer mit toolbar.

Dies ist die Layout-Datei, die ich verwende :

   <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/frame_container1"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >


<Toolbar android:id="@+id/toolbar"            <------ line #7
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/status" ></Toolbar>

<android.support.v4.widget.DrawerLayout 
    android:id="@+id/drawer_layout"
    android:layout_below="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#FFFFFF" >

    <!-- Framelayout to display Fragments -->
    <RelativeLayout
        android:id="@+id/frame_container"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >
    </RelativeLayout>
    <!-- Listview to display slider menu -->

    <ListView
        android:id="@+id/list_slidermenu"
        android:layout_width="240dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:choiceMode="singleChoice"
        android:dividerHeight=".02dp"        
        android:background="#000000"/>

</android.support.v4.widget.DrawerLayout>

        </RelativeLayout>  

Ich bin mit dem folgenden code :

@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        mDrawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout);
        adapter = new ArrayAdapter<String>(getApplicationContext(), android.R.layout.simple_list_item_1, new String[]{""});
        //mDrawerList.setAdapter(adapter);
         t=(Toolbar) findViewById(R.id.toolbar);

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


        mDrawerToggle = new ActionBarDrawerToggle(this, mDrawerLayout,
                R.string.app_name, //nav drawer open - description for accessibility
                R.string.app_name //nav drawer close - description for accessibility
        ) {
            public void onDrawerClosed(View view) {

                //calling onPrepareOptionsMenu() to show action bar icons
                // invalidateOptionsMenu();
            super.onDrawerClosed(view);
            }

            public void onDrawerOpened(View drawerView) {


                super.onDrawerClosed(drawerView);
            }
        };
        mDrawerLayout.setDrawerListener(mDrawerToggle);
    }

Bitte helfen.

InformationsquelleAutor user3371398 | 2014-10-20

Schreibe einen Kommentar