本文主要是介绍Android查缺补漏之Toolbar,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在移动应用中,顶部工具栏是一种很常见的东西,尤其是在iOS中,顶部工具栏放上一个返回按钮几乎成了标配,而大部分设计人员,会趋向于iOS和Android两端保持一致,所以在自带返回键的安卓设备中,顶部栏也越来越多。
图为Android某版本系统应用的工具栏
Android系统在3.0版本就提供了Actionbar的功能,但是当时的Actionbar并不是很完善,就连Google官方都在一定程度上承认Actionbar限制了Android开发与设计的弹性。因此在以前的开发中很少使用原生的Actionbar,大多都是自己封装一个View来实现顶部栏所需的各种功能。
在Android5.0中,Google提供了一种全新的控件,叫做Toolbar,并且建议开发者使用Toolbar替换Actionbar。在Material design中也规范了其名称:App bar.
Toolbar的优势
- Toolbar继承于ViewGroup而Actionbar继承于Object,因此Toolbar在配置的时候更加方便;
- 可定制性高,使用起来更加灵活;
- 能够显示用户当前所处的位置;
- 能够提供一些重要的交互操作;
- 可以实现导航功能,使用户更加方便的回到HomeActivity。
Toolbar基本使用方法
dependencies {compile fileTree(dir: 'libs', include: ['*.jar'])compile 'com.android.support:appcompat-v7:24.2.0'
}
导入第三方库后,我们需要先将应用中原有的Actionbar隐藏掉,在style.xml增加一种新的主题NoActionBar
<resources><!-- Base application theme. --><style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"><!-- Customize your theme here. --><item name="colorPrimary">@color/colorPrimary</item><item name="colorPrimaryDark">@color/colorPrimaryDark</item><item name="colorAccent">@color/colorAccent</item></style><style name="AppTheme.NoActionBar"><item name="windowActionBar">false</item><item name="windowNoTitle">true</item></style></resources>
然后在manifests中,将application的主题设为NoActionBar,当然也可以针对单一Activity设置
<applicationandroid:allowBackup="true"android:icon="@mipmap/ic_launcher"android:label="@string/app_name"android:supportsRtl="true"android:theme="@style/AppTheme.NoActionBar">
在布局文件中,增加Toolbar,注意调用此布局的Activity必须继承AppCompatActivity
<android.support.v7.widget.Toolbarandroid:layout_width="match_parent"android:layout_height="wrap_content"android:background="@color/colorPrimary"app:logo="@mipmap/ic_launcher"app:title="hello toolbar"app:titleTextColor="#ffffff"></android.support.v7.widget.Toolbar>
最基本的Toolbar导入完成,编译后可以看到以下效果
Toolbar自定义属性
进入Toolbar的源码中,能够看到定义了一些view常规属性之外的属性 * @attr ref android.support.v7.appcompat.R.styleable#Toolbar_buttonGravity* @attr ref android.support.v7.appcompat.R.styleable#Toolbar_collapseContentDescription* @attr ref android.support.v7.appcompat.R.styleable#Toolbar_collapseIcon* @attr ref android.support.v7.appcompat.R.styleable#Toolbar_contentInsetEnd* @attr ref android.support.v7.appcompat.R.styleable#Toolbar_contentInsetLeft* @attr ref android.support.v7.appcompat.R.styleable#Toolbar_contentInsetRight* @attr ref android.support.v7.appcompat.R.styleable#Toolbar_contentInsetStart* @attr ref android.support.v7.appcompat.R.styleable#Toolbar_contentInsetStartWithNavigation* @attr ref android.support.v7.appcompat.R.styleable#Toolbar_contentInsetEndWithActions* @attr ref android.support.v7.appcompat.R.styleable#Toolbar_android_gravity* @attr ref android.support.v7.appcompat.R.styleable#Toolbar_logo* @attr ref android.support.v7.appcompat.R.styleable#Toolbar_logoDescription* @attr ref android.support.v7.appcompat.R.styleable#Toolbar_maxButtonHeight* @attr ref android.support.v7.appcompat.R.styleable#Toolbar_navigationContentDescription* @attr ref android.support.v7.appcompat.R.styleable#Toolbar_navigationIcon* @attr ref android.support.v7.appcompat.R.styleable#Toolbar_popupTheme* @attr ref android.support.v7.appcompat.R.styleable#Toolbar_subtitle* @attr ref android.support.v7.appcompat.R.styleable#Toolbar_subtitleTextAppearance* @attr ref android.support.v7.appcompat.R.styleable#Toolbar_subtitleTextColor* @attr ref android.support.v7.appcompat.R.styleable#Toolbar_title* @attr ref android.support.v7.appcompat.R.styleable#Toolbar_titleMargin* @attr ref android.support.v7.appcompat.R.styleable#Toolbar_titleMarginBottom* @attr ref android.support.v7.appcompat.R.styleable#Toolbar_titleMarginEnd* @attr ref android.support.v7.appcompat.R.styleable#Toolbar_titleMarginStart* @attr ref android.support.v7.appcompat.R.styleable#Toolbar_titleMarginTop* @attr ref android.support.v7.appcompat.R.styleable#Toolbar_titleTextAppearance* @attr ref android.support.v7.appcompat.R.styleable#Toolbar_titleTextColor
这些属性的命名和View的个属性风格相同,很容易就能够理解它们的含义。在xml中如果需要定义这些属性,需要设置
xmlns:app="http://schemas.android.com/apk/res-auto"
然后通过app:xxx进行引用。
mToolbar = (Toolbar)findViewById(R.id.toolbar);mToolbar.setTitle("title");setSupportActionBar(mToolbar);mToolbar.setNavigationIcon(R.mipmap.ic_launcher);
Toolbar个性化设置
设置标题、子标题、logo
private void initToolbar(){mToolbar = (Toolbar)findViewById(R.id.toolbar);mToolbar.setTitle("title");mToolbar.setSubtitle("sub title");mToolbar.setTitleTextColor(0xffffffff);mToolbar.setSubtitleTextColor(0xffffffff);mToolbar.setLogo(R.mipmap.back);setSupportActionBar(mToolbar);}
设置返回按钮
private void initToolbar(){mToolbar = (Toolbar)findViewById(R.id.toolbar);mToolbar.setTitle("title");mToolbar.setSubtitle("sub title");mToolbar.setTitleTextColor(0xffffffff);mToolbar.setSubtitleTextColor(0xffffffff);mToolbar.setNavigationIcon(R.mipmap.back);setSupportActionBar(mToolbar);mToolbar.setNavigationOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View v) {Toast.makeText(MainActivity.this,"back",Toast.LENGTH_SHORT).show();}});}
overflow
<?xml version="1.0" encoding="utf-8"?>
<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"><itemandroid:id="@+id/item1"android:title="这是第一个选项"app:showAsAction="never"/><itemandroid:id="@+id/item2"android:title="这是第二个选项"app:showAsAction="never"/>
</menu>
里面的两个item对应两个不同的选项,之后,在Activity中调用相应的xml
@Overridepublic boolean onCreateOptionsMenu(Menu menu) {getMenuInflater().inflate(R.menu.menu,menu);return true;}
这样便得到了一个最基础的overflow
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
在布局文件中修改Toolbar的属性,即可将按钮的颜色变成白色。然后在style.xml增加一个新的xml
<style name="OverFlowMenuTheme" parent="Theme.AppCompat.NoActionBar"><!-- 设置Menu菜单的背景色 --><item name="android:itemBackground">@android:color/white</item><!-- 设置Menu菜单的字体颜色 --><item name="android:textColorPrimary">@android:color/black</item><!-- 设置Menu窗口不覆盖Toolbar视图 --><item name="overlapAnchor">false</item></style>
再修改toolbar的popuptheme
app:popupTheme="@style/OverFlowMenuTheme"
即完成对弹窗的优化
@Overridepublic boolean onOptionsItemSelected(MenuItem item) {switch (item.getItemId()){case R.id.item1:Toast.makeText(MainActivity.this,"选择第一个选项",Toast.LENGTH_SHORT).show();break;case R.id.item2:Toast.makeText(MainActivity.this,"选择第二个选项",Toast.LENGTH_SHORT).show();break;}return super.onOptionsItemSelected(item);}
搜索
<itemandroid:id="@+id/action_search"android:icon="@mipmap/search"android:title="搜索"app:showAsAction="ifRoom|collapseActionView"app:actionViewClass="android.support.v7.widget.SearchView"/>
然后在activity中重写onCreateOptionMenu方法
@Overridepublic boolean onCreateOptionsMenu(Menu menu) {getMenuInflater().inflate(R.menu.menu,menu);MenuItem searchItem = menu.findItem(R.id.action_search);SearchView searchView = (SearchView) MenuItemCompat.getActionView(searchItem);;//设置searchView相关逻辑return true;}
这篇关于Android查缺补漏之Toolbar的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!