Android基础---使用ToolBar教你打造一个通用的标题
现在项目中一般都会使用标题栏,谷歌在2014年推出了新的app bar---ToolBar,代替了以前使用的ActionBar。在做项目中会经常用到这个ToolBar,虽然用的很多,但是自己对它如何用还不是很明白,今天就来简单的学习下这个控件的使用。
效果图
效果图1. 修改app的style
我们如果要使用ToolBar,需要先把原来的ActionBar隐藏起来,就先要设置App的主题为Theme.AppCompat.Light.NoActionBar
这种主题,就需要在values/style.xml
里面修改Apptheme
的Parent或者parent的parent为Theme.AppCompat.Light.NoActionBar
,这样的话才能使用ToolBar得到我们想要的效果。
2. 在布局中使用ToolBar达到效果图
1.标题
首先在布局文件activity_main.xml
中:
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="48dp"
android:background="#ffffff"
android:gravity="center"
app:titleTextColor="#1d1d1d">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="工作"
android:textColor="#1d1d1d"
android:textSize="16sp" />
</android.support.v7.widget.Toolbar>
需要说明的是,ToolBar其实也是一个ViewGroup,他的布局和LinearLayout类似,所以在使用的过程中,可以使用
android:layout_gravity="center"
来让TextView
居中显示
这个时候的标题栏是这样的:
标题栏-无返回箭头-无右侧按钮2. 右侧按钮
标题栏已经居中显示了,但是我们可能还需要在右侧需要一个按钮来进行一定的操作,比如下面的<label style="color:red">按钮</label>操作
标题栏-无返回箭头这个怎么实现呢,看下面的代码:
第一种实现
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="48dp"
android:background="#ffffff"
android:gravity="center"
app:titleTextColor="#1d1d1d">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:layout_gravity="center"
android:text="工作"
android:textColor="#1d1d1d"
android:textSize="16sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:layout_alignParentRight="true"
android:layout_marginRight="12dp"
android:text="按钮"
android:textColor="#1d1d1d"
android:textSize="14sp" />
</RelativeLayout>
</android.support.v7.widget.Toolbar>
这里在ToolBar的自定义区放入了一个RelativeLayout,在RelativeLayout里面放置了一个标题和右侧的按钮,右侧的按钮是可以随意定制的,
第二种实现
我们可以利用菜单选项menu来实现这种效果,
- 首先在res目录下新建menu文件夹,在该文件夹下面建立menu.main.xml,代码如下:
<menu 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"
tools:context=".MainActivity">
<item
android:id="@+id/action_share"
android:orderInCategory="90"
android:title="按钮"
app:showAsAction="ifRoom" />
</menu>
- 在
MainActivity.java
中重写onCreateOptionsMenu
方法如下所示:
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
3. 左侧的返回箭头
首先,你得先准备一个返回箭头的图标,然后以下两种都行,都可以实现显示小箭头,并且点击小箭头返回
第一种方案
//设置小箭头
toolbar.setNavigationIcon(R.drawable.common_back_ic);
//设置小箭头点击事件
toolbar.setNavigationOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
finish();
}
});
这种方案是只能在当前的Activity中使用,达不到复用的目的。
第二种方案
在日常的开发中,通常我们会写一个基类,让所有的Activity都继承于这个基类,便于统一管理和减少代码量。
所以我们可以在改基类(比如:BaseActivity.java
)中写入以下方法:
/**
* 设置左上角back按钮
*/
public void setBackArrow() {
final Drawable upArrow = getResources().getDrawable(R.drawable.common_back_ic);
//给ToolBar设置左侧的图标
getSupportActionBar().setHomeAsUpIndicator(upArrow);
// 给左上角图标的左边加上一个返回的图标 。对应ActionBar.DISPLAY_HOME_AS_UP
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
//设置actionBar的标题是否显示,对应ActionBar.DISPLAY_SHOW_TITLE。
getSupportActionBar().setDisplayShowTitleEnabled(false);
}
/**
* 点击左上角的返回按钮,结束本Activity
* home就是左上角的小箭头,在toolbar上
*
* @param item
* @return
*/
@Override
public boolean onOptionsItemSelected(MenuItem item) {
if (item.getItemId() == android.R.id.home) {
basefinish();
return true;
}
return super.onOptionsItemSelected(item);
}
/**
* 抽象方法,用于结束activity
*/
public abstract void basefinish();
@Override
public void onBackPressed() {
basefinish();
}
这样的话,我们在的其他Activity
只要继承于这个BaseActivity
,就需要实现抽象方法,抽象方法会实现返回操作,我们每次只用调用 setBackArrow()这个方法就可以很方便的实现返回小箭头的功能了。简直不能更方便啦!
到此就实现了ToolBar的基本使用,建立了自己的一个标题栏,效果和上面是一样的:
标题栏-最终特此记录!