Android的标题栏是很重要的一个模块,App是否易用很大一部分要看标题栏。写这个博客的时候刚发现谷歌推出了一种新的标题栏实现方式。
它相对于以前的ActionBar来说,最大的变化是开发者可以在标题栏上增加自定义的view。同时在最左端添加了一个导航按钮。
将Activity的默认标题栏禁用。
这个实现有两中方式,代码控制和xml文件里配置
代码
如果是继承 AppCompatActivity调用 supportRequestWindowFeature(Window.FEATURE_NO_TITLE) 去 掉默认的导航栏。
如果是继承Activity就应该调用 requestWindowFeature(Window.FEATURE_NO_TITLE) );
xml文件配置
给Activity设置没有默认标题栏的主题NoActionBar
在布局文件中添加Toolbar控件,注意要引用v7包,另外需要在布局文件中加入xmlns:app=””,然后才可以通过app:XXXXXXX来配置标题栏的一些属性,如下面的 app:popupTheme=”@style/AppTheme.PopupOverlay” 给标题栏设置了主题。
<android.support.design.widget.AppBarLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:theme="@style/AppTheme.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.PopupOverlay" /> </android.support.design.widget.AppBarLayout>在menu文件夹下添加menu选项的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="com.example.administrator.gattbluethoothdemo.MainActivity"> <item android:id="@+id/action_settings" android:orderInCategory="100" android:title="设置" app:showAsAction="never" /> <item android:id="@+id/menu_refresh" android:title="更新" android:checkable="false" android:orderInCategory="1" app:showAsAction="ifRoom"/> <item android:id="@+id/menu_scan" android:title="扫描" android:orderInCategory="100" app:showAsAction="ifRoom|withText"/> <item android:id="@+id/menu_stop" android:title="停止" android:orderInCategory="101" app:showAsAction="ifRoom|withText"/> </menu>在Activity中定义使用Toolbar
完成上面的准备工作,我们就能开始在java代码中添加和调用Toolbar控件了。
在onCreate方法中添加
接着就和ActionBar一样,
@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; } @Override public boolean onOptionsItemSelected(MenuItem item) { // Handle action bar item clicks here. The action bar will // automatically handle clicks on the Home/Up button, so long // as you specify a parent activity in AndroidManifest.xml. int id = item.getItemId(); //noinspection SimplifiableIfStatement if (id == R.id.action_settings) { Toast.makeText(MainActivity.this,"请设置",Toast.LENGTH_SHORT).show(); return true; } return super.onOptionsItemSelected(item); }看一下效果图