Android基于Toolbar實(shí)現(xiàn)頂部標(biāo)題欄及后退鍵
最近設(shè)計(jì)安卓里面有個(gè)標(biāo)題欄,里面有個(gè)后退鍵,可以完成后退之類的功能。
好,剛好可以用Toolbar去實(shí)現(xiàn)
上代碼:activity_main.xml
<?xml version='1.0' encoding='utf-8'?><android.support.design.widget.CoordinatorLayout 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' tools:context='.MainActivity'> <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: android:layout_width='match_parent' android:layout_height='wrap_content' android:background='?attr/colorPrimary' app:popupTheme='@style/AppTheme.PopupOverlay'> <TextViewandroid:layout_width='wrap_content'android:layout_height='wrap_content'android:layout_centerInParent='true'android:layout_gravity='center'android:text='設(shè)置'android:textSize='22sp' /> </android.support.v7.widget.Toolbar> </android.support.design.widget.AppBarLayout></android.support.design.widget.CoordinatorLayout>
這里需要引用styles.xml在里面加樣式
<resources> <!-- Base application theme. --> <style name='AppTheme' parent='Base.Theme.AppCompat.Light'> <!-- 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> <style name='AppTheme.AppBarOverlay' parent='ThemeOverlay.AppCompat.Dark.ActionBar' /> <style name='AppTheme.PopupOverlay' parent='ThemeOverlay.AppCompat.Light' /></resources>
最后主程序:
package action.sun.com.testtoobar1;import android.os.Bundle;import android.support.design.widget.FloatingActionButton;import android.support.design.widget.Snackbar;import android.support.v7.app.AppCompatActivity;import android.support.v7.widget.Toolbar;import android.view.View;import android.view.Menu;import android.view.MenuItem;import android.view.Window;import android.view.WindowManager;import android.widget.Toast;public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); /*getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN); //設(shè)置全屏*/ setContentView(R.layout.activity_main); Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); //一定要加,為了去掉本身的標(biāo)題文字 toolbar.setTitle(''); //初始化toolbar setSupportActionBar(toolbar); //左邊的小箭頭(注意需要在setSupportActionBar(toolbar)之后才有效果) toolbar.setNavigationIcon(R.mipmap.back); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. Toast.makeText(MainActivity.this, '選擇了菜單', Toast.LENGTH_SHORT).show(); //初始化右邊的菜單選項(xiàng) //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(); Toast.makeText(MainActivity.this, '選擇了后退按鈕='+id, Toast.LENGTH_SHORT).show(); //noinspection SimplifiableIfStatement return super.onOptionsItemSelected(item); }}
到此代碼完畢,就能夠完成需要上圖實(shí)現(xiàn)的效果了
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. python 如何在 Matplotlib 中繪制垂直線2. bootstrap select2 動(dòng)態(tài)從后臺(tái)Ajax動(dòng)態(tài)獲取數(shù)據(jù)的代碼3. ASP常用日期格式化函數(shù) FormatDate()4. python中@contextmanager實(shí)例用法5. html中的form不提交(排除)某些input 原創(chuàng)6. CSS3中Transition屬性詳解以及示例分享7. js select支持手動(dòng)輸入功能實(shí)現(xiàn)代碼8. 如何通過python實(shí)現(xiàn)IOU計(jì)算代碼實(shí)例9. 開發(fā)效率翻倍的Web API使用技巧10. vue使用moment如何將時(shí)間戳轉(zhuǎn)為標(biāo)準(zhǔn)日期時(shí)間格式
