1. 程式人生 > >android使用Toolbar替換ActionBar

android使用Toolbar替換ActionBar

在manifest.xml檔案中更改:

<activity android:name="nameActivity"
            android:screenOrientation="portrait"
            android:theme="@style/AppTheme.NoActionBar2"/>//方便加入自定義的標題內容

在.xml檔案中加入如下程式碼:

<android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        style="@style/Toolbar.MyStyle"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:navigationIcon="@mipmap/lg"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
        app:title="檢查情況"
        app:titleTextAppearance="@style/Toolbar.TitleText"
        app:titleTextColor="@android:color/white" />

在Activity檔案中加入:

 Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);
     
        toolbar.setNavigationOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                finish();
            }

        });