Android的標題欄是很重要的一個模塊,App是否易用很大一部分要看標題欄。寫這個博客的時候剛發現谷歌推出了一種新的標題欄實現方式。
它相對於以前的ActionBar來說,最大的變化是開發者可以在標題欄上增加自定義的view。同時在最左端添加了一個導航按鈕。
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<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 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>
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
toolbar.setTitle("掃描界面");
toolbar.setSubtitle("子標題");
//設置導航欄圖標
toolbar.setNavigationIcon(R.mipmap.ic_launcher);
//設置程序logo
toolbar.setLogo(R.mipmap.ic_launcher);
//設置Toolbar像ActionBar一樣實現,
setSupportActionBar(toolbar);
接著就和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);
}
看一下效果圖
更多Android相關信息見Android 專題頁面 http://www.linuxidc.com/topicnews.aspx?tid=11