91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

深入理解Android 5.0中的Toolbar

發布時間:2020-10-23 15:23:35 來源:腳本之家 閱讀:194 作者:木木仨兒 欄目:移動開發

環境說明:

  • Android Studio 2.0
  • V7包版本:com.android.support:appcompat-v7:23.4.0
  • compileSdkVersion 23
  • buildToolsVersion "24.0.0"

Toolbar 引入使用

XML布局中加入:

<android.support.v7.widget.Toolbar
 android:id="@+id/toolbar"
 android:layout_width="match_parent"
 android:layout_height="?attr/actionBarSize"/>

主題改為隱藏ActionBar:

Theme.AppCompat.Light.NoActionBar

Activity代碼中加入:

 setContentView(R.layout.activity_main);
 Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
 setSupportActionBar(toolbar);

此時運行效果:

深入理解Android 5.0中的Toolbar

添加背景色

android:background="@color/colorPrimary"

此時運行效果:

深入理解Android 5.0中的Toolbar

基本屬性設置

<android.support.v7.widget.Toolbar
 android:id="@+id/toolbar"
 android:layout_width="match_parent"
 android:layout_height="?attr/actionBarSize"
 android:background="@color/colorPrimary"
 app:navigationIcon="@mipmap/title_bar_back"http://左側圖標
 app:subtitle="子標題"
 app:subtitleTextColor="#fff" //標題顏色
 app:title="標題"
 app:titleTextColor="#fff"/> //子標題顏色

運行效果:

深入理解Android 5.0中的Toolbar

添加選項菜單

第一步創建菜單文件

 <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_settings"
 android:icon="@mipmap/ic_launcher"
 android:orderInCategory="100"
 android:title="settings"
 app:showAsAction="never"/>
 <item
 android:id="@+id/action_share"
 android:icon="@mipmap/ic_action_share"
 android:orderInCategory="100"
 android:title="settings"
 app:showAsAction="ifRoom"/>
 <item
 android:id="@+id/action_search"
 android:icon="@mipmap/ic_action_search"
 android:orderInCategory="100"
 android:title="settings"
 app:showAsAction="ifRoom"/>
 </menu>

第二部在代碼中重寫onCreateOptionsMenu方法加載菜單文件

@Override
public boolean onCreateOptionsMenu(Menu menu) {
 getMenuInflater().inflate(R.menu.menu_main, menu);
 return true;
}

此時效果:

深入理解Android 5.0中的Toolbar

個性設置

左側返回箭頭

想要顯示自帶的返回箭頭,需要去掉之前設定的屬性:

app:navigationIcon="@mipmap/title_bar_back"

然后在代碼中添加:

getSupportActionBar().setHomeButtonEnabled(true); //設置返回鍵可用
getSupportActionBar().setDisplayHomeAsUpEnabled(true);

此時效果:

深入理解Android 5.0中的Toolbar

溢出圖標顏色

在style文件中添加:

 <!-- 溢出菜單圖標顏色-->
<item name="colorControlNormal">@android:color/white</item>

此時效果:

深入理解Android 5.0中的Toolbar

自定義右側溢出圖標

在Style文件中添加:

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
 <!-- Customize your theme here. -->
 <item name="colorPrimary">@color/colorPrimary</item>
 <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
 <item name="colorAccent">@color/colorAccent</item>
 <!-- 溢出菜單圖標顏色-->
 <item name="colorControlNormal">@android:color/white</item>
 <!-- 溢出菜單圖標自定義-->
 <item name="android:actionOverflowButtonStyle">@style/OverflowButtonStyle</item>
 </style>

 <style name="OverflowButtonStyle" parent="android:Widget.ActionButton.Overflow">
 <item name="android:src">@mipmap/ic_action_add</item>
 </style>

此時運行效果:

深入理解Android 5.0中的Toolbar

更改彈出菜單背景

在Style文件中添加樣式:


在布局文件中添加使用主題:

app:popupTheme="@style/ToolbarPopupTheme"

此時運行效果:

深入理解Android 5.0中的Toolbar

更改彈出菜單文字顏色

添加樣式文件:

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
  <!-- Customize your theme here. -->
  <item name="colorPrimary">@color/colorPrimary</item>
  <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
  <item name="colorAccent">@color/colorAccent</item>
  <!-- 溢出菜單圖標顏色-->
  <item name="colorControlNormal">@android:color/white</item>
  <item name="android:actionOverflowButtonStyle">@style/OverflowButtonStyle</item>
  <!-- 溢出菜單文字顏色-->
  <item name="textAppearanceLargePopupMenu">@style/Overflow_Menu_Text_style</item>
 </style>
 <!--溢出菜單文字顏色-->
 <style name="Overflow_Menu_Text_style" parent="@style/TextAppearance.AppCompat.Widget.PopupMenu.Large">
  <item name="android:textColor">#fff</item>
 </style>

此時運行效果:

深入理解Android 5.0中的Toolbar

修改標題文字大小

添加配置:

 app:titleTextAppearance="@style/ToolbarTitleSize"

添加style:

 <!-- toolbar標題文字大小 -->
 <style name="ToolbarTitleSize" parent="@style/TextAppearance.Widget.AppCompat.Toolbar.Title">
  <item name="android:textSize">28sp</item>
 </style>

此時運行效果:

深入理解Android 5.0中的Toolbar

子標題文字大小類似,添加配置然后定義style文件(此處省略):

app:subtitleTextAppearance="@style/ToolbarTitleSize"

修改彈出菜單位置

修改配置使彈出菜單顯示在Toolbar下方:

首先重新設置屬性:(在界面布局文件Toolbar中)

app:popupTheme="@style/OverflowMenuStyle"

在Style文件中添加:

<style name="OverflowMenuStyle">
  <!-- 是否覆蓋錨點,默認為true,即蓋住Toolbar -->
  <item name="overlapAnchor">false</item>
  <item name="android:dropDownWidth">wrap_content</item>
  <item name="android:paddingRight">5dp</item>
  <!-- 彈出層背景顏色 -->
  <item name="android:colorBackground">#FFCC99</item>
  <!-- 彈出層垂直方向上的偏移,即在豎直方向上距離Toolbar的距離,值為負則會蓋住Toolbar -->
  <item name="android:dropDownVerticalOffset">5dp</item>
  <!-- 彈出層水平方向上的偏移,即距離屏幕左邊的距離,負值會導致右邊出現空隙 -->
  <item name="android:dropDownHorizontalOffset">0dp</item>
  <!-- 設置彈出菜單文字顏色 -->
  <item name="android:textColor">#0099CC</item>
 </style>

此時運行效果:

深入理解Android 5.0中的Toolbar

事件處理

返回按鈕事件

添加監聽

toolbar.setNavigationOnClickListener(new View.OnClickListener() {
   @Override
   public void onClick(View v) {
    Toast.makeText(getApplicationContext(), "點擊了返回箭頭", Toast.LENGTH_LONG).show();
   }
  });

菜單項點擊事件

重寫方法

 @Override
 public boolean onOptionsItemSelected(MenuItem item) {
  switch (item.getItemId()) {
   case R.id.action_settings:
    break;
   case R.id.action_search:
    break;
   case R.id.action_share:
    break;
  }
  return true;
 }

自定義Toolbar

Toolbar下面可以嵌套布局,直接將自己定義好的布局放到Toolbar下面即可

<android.support.v7.widget.Toolbar
  android:layout_width="match_parent"
  android:layout_height="?attr/actionBarSize">

  <RelativeLayout
   android:layout_width="match_parent"
   android:layout_height="match_parent">
   ......
   </RelativeLayout>
 </android.support.v7.widget.Toolbar>

Toolbar 和 DrawerLayout 左滑菜單

 <?xml version="1.0" encoding="utf-8"?>
 <android.support.v4.widget.DrawerLayout 
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:id="@+id/drawer_left"
 android:layout_width="match_parent"
 android:layout_height="match_parent">
 <!--側滑菜單-->
 <LinearLayout
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:layout_gravity="start"
  android:background="#CCCCFF"
  android:orientation="vertical">

  <TextView
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:padding="10dp"
   android:text="選項一"
   android:textSize="18sp"/>

  <TextView
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:padding="10dp"
   android:text="選項二"
   android:textSize="18sp"/>
 </LinearLayout>
</android.support.v4.widget.DrawerLayout>

添加左滑布局文件:

在主布局文件中引入:(在Toolbar下方)

<!--DrawerLayout-->
<include layout="@layout/custom_drawerlayout"/>

在代碼中添加關聯:

DrawerLayout mDrawerLayout = (DrawerLayout) findViewById(R.id.drawer_left);
 ActionBarDrawerToggle mDrawerToggle = new ActionBarDrawerToggle(this, mDrawerLayout, toolbar, R.string.open, R.string.close);
 mDrawerToggle.syncState();
 mDrawerLayout.setDrawerListener(mDrawerToggle);

此時運行效果:

深入理解Android 5.0中的Toolbar

新版本studio,在新建Activity的時候可以選擇對應的模板,會自動創建好DrawerLayout并關聯Toolbar.

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作能帶來一定的幫助,如果有疑問大家可以留言交流。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

铅山县| 砀山县| 门头沟区| 黄大仙区| 湖南省| 玉门市| 普安县| 吴忠市| 项城市| 平顺县| 武清区| 石河子市| 景泰县| 阆中市| 驻马店市| 济南市| 清涧县| 金川县| 瓦房店市| 晋宁县| 华安县| 渭源县| 望城县| 青神县| 环江| 本溪| 新宾| 达尔| 织金县| 阿克| 温泉县| 馆陶县| 铜川市| 梁河县| 犍为县| 阳谷县| 井冈山市| 东阳市| 本溪| 怀远县| 于田县|