Android编程入门--android.support.v7.widget.Toolbar

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android编程入门--android.support.v7.widget.Toolbar相关的知识,希望对你有一定的参考价值。

参考博客:利用 v7 Toolbar 自定义 Android ActionBar

布局

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:context="com.zyp.driot.TimerChartActivity">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/AppTheme.NoActionBar.AppBarOverlay">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:popupTheme="@style/AppTheme.NoActionBar.PopupOverlay" />

    </android.support.design.widget.AppBarLayout>

    <include layout="@layout/content_timer_chart" />

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom|end"
        android:layout_marginRight="16dp"
        android:layout_marginBottom="64dp"
        android:src="@android:drawable/stat_notify_sync" />

</android.support.design.widget.CoordinatorLayout>

 

manifest

            android:name=".ui.activity.MainActivity"
            android:label="@string/app_name"
            android:theme="@style/AppTheme.NoActionBar">

注:android:fitsSystemWindows="true"

需要CoordinatorLayout作为主布局容器

代码

    @BindView(R.id.toolbar)
    Toolbar mToolBar;

        setSupportActionBar(mToolBar);

 

以上是关于Android编程入门--android.support.v7.widget.Toolbar的主要内容,如果未能解决你的问题,请参考以下文章

Facebook 广告集成到 Android 应用程序中

RecyclerView 上拉加载下拉刷新

Android Support v4 22.2.0 的 Proguard 配置

重复条目:android / support / v7 / recyclerview / extensions / ListAdapter.class [复制]

安卓7.0遇到 android.os.FileUriExposedException: file:///storage/emulated.. exposed beyond app through In

RxJava入门系列四,Android中的响应式编程