Toolbar在Android中的使用(1),android机器学习

  • 像常规View一样,Toolbar很容易来放置、实现动画以及控制。

  • 一个Activity中可以有多个Toolbar。

包之间的关系

由于这个 Toobar 产生的历史悠久,他所涉及的包啊 也是相当的复杂,就像Fragment包一样,下面,我就给大家来梳理一下:

android.widget.Toolbar 对应 setActionBar()

androidx.appcompat.widget.Toolbar 对应 setSupportActionBar()

简单的使用

=====

第一步,在 AndroidManifest.xml 中把那个主题改成带 NoActionBar 的

Toolbar在Android中的使用(1),android机器学习_第1张图片

第二步:在布局文件中申明 Toolbar

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:orientation=“vertical”

tools:context=".MainActivity">

android:id="@+id/tb_self_tool_bar"

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:background="#0000ff"

android:titleTextCo

你可能感兴趣的:(程序员,架构,移动开发,android)