溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

使用CoordinatorLayout實(shí)現(xiàn)ToolBar擴(kuò)展與收縮

發(fā)布時(shí)間:2020-07-13 19:41:41 來(lái)源:網(wǎng)絡(luò) 閱讀:2650 作者:liuyvhao 欄目:移動(dòng)開(kāi)發(fā)

擴(kuò)展ToolBar效果圖如下:

使用CoordinatorLayout實(shí)現(xiàn)ToolBar擴(kuò)展與收縮

要使用CoordinatorLayout先在gradle中加入compile 'com.android.support:design:23.4.0'

Activity布局:

<?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"  
    android:fitsSystemWindows="true"  
    tools:context="com.lg.collapsingdemo.ScrollingActivity">  
  
    <android.support.design.widget.AppBarLayout  
        android:id="@+id/app_bar"  
        android:layout_width="match_parent"  
        android:layout_height="350dp"  
        android:fitsSystemWindows="true"  
        android:theme="@style/AppTheme.AppBarOverlay">  
  
        <android.support.design.widget.CollapsingToolbarLayout  
            android:id="@+id/toolbar_layout"  
            android:layout_width="match_parent"  
            android:layout_height="match_parent"  
            android:background="@drawable/bg"  
            android:fitsSystemWindows="true"  
            app:contentScrim="?attr/colorPrimary"  
            app:layout_scrollFlags="scroll|exitUntilCollapsed">  
  
            <android.support.v7.widget.Toolbar  
                android:id="@+id/toolbar"  
                android:layout_width="match_parent"  
                android:layout_height="?attr/actionBarSize"  
                app:layout_collapseMode="pin"  
                app:popupTheme="@style/AppTheme.PopupOverlay" />  
  
        </android.support.design.widget.CollapsingToolbarLayout>  
    </android.support.design.widget.AppBarLayout>  
  
    <android.support.v4.widget.NestedScrollView  
        android:layout_width="match_parent"  
        android:layout_height="match_parent"  
        app:layout_behavior="@string/appbar_scrolling_view_behavior"  
        tools:showIn="@layout/activity_scrolling">  
  
        <TextView  
            android:layout_width="match_parent"  
            android:layout_height="match_parent"  
            android:text="@string/large_text"/>  
  
    </android.support.v4.widget.NestedScrollView>  
  
  
</android.support.design.widget.CoordinatorLayout>

app:title設(shè)置的Title內(nèi)容在布局展開(kāi)的時(shí)候會(huì)變得大些,而在折疊的時(shí)候使字體過(guò)渡到默認(rèn)值,注意,我們的title是在CollapsingToolbarLayout上面設(shè)置的,而不是在ToolBar上面

app:layout_collapseMode這個(gè)屬性來(lái)設(shè)置子視圖折疊模式,有兩種:

固定模式:app:layout_collapseMode = "pin" 確保Toolbar在view折疊的時(shí)候最后固定在屏幕的頂部。   

視差模式:app:layout_collapseMode = "parallax" 在折疊的時(shí)候會(huì)有個(gè)視差折疊的效果。

app:layout_scrollFlags屬性設(shè)置滑動(dòng)的方式,以起到響應(yīng)布局的作用

Flag包括:

  1. scoll: 所有想滾動(dòng)出屏幕的view都需要設(shè)置這個(gè)flag- 沒(méi)有設(shè)置這個(gè)flag的view將被固定在屏幕頂部。

  2. enterAlways: 這個(gè)flag讓任意向下的滾動(dòng)都會(huì)導(dǎo)致該view變?yōu)榭梢?jiàn),啟用快速“返回模式”。

  3. enterAlwaysCollapsed: 顧名思義,這個(gè)flag定義的是何時(shí)進(jìn)入(已經(jīng)消失之后何時(shí)再次顯示)。假設(shè)你定義了一個(gè)最小高度(minHeight)同時(shí)enterAlways也定義了,那么view將在到達(dá)這個(gè)最小高度的時(shí)候開(kāi)始顯示,并且從這個(gè)時(shí)候開(kāi)始慢慢展開(kāi),當(dāng)滾動(dòng)到頂部的時(shí)候展開(kāi)完。

  4. exitUntilCollapsed: 同樣顧名思義,這個(gè)flag時(shí)定義何時(shí)退出,當(dāng)你定義了一個(gè)minHeight,這個(gè)view將在滾動(dòng)到達(dá)這個(gè)最小高度的時(shí)候消失。

通過(guò)app:layout_behavior="@string/appbar_scrolling_view_behavior"屬性來(lái)實(shí)現(xiàn)滾動(dòng)布局。


Activity代碼:

public class ScrollingActivity extends AppCompatActivity {  
  
    @Override  
    protected void onCreate(Bundle savedInstanceState) {  
        super.onCreate(savedInstanceState);  
        setContentView(R.layout.activity_scrolling);  
        Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);  
        setSupportActionBar(toolbar);  
  
    }  
  
    @Override  
    public boolean onCreateOptionsMenu(Menu menu) {  
        getMenuInflater().inflate(R.menu.menu_scrolling, menu);  
        return true;  
    }  
  
    @Override  
    public boolean onOptionsItemSelected(MenuItem item) {  
        int id = item.getItemId();  
  
        if (id == R.id.action_settings) {  
            return true;  
        }  
        return super.onOptionsItemSelected(item);  
    }  
}

ToolBar的收縮:

使用CoordinatorLayout實(shí)現(xiàn)ToolBar擴(kuò)展與收縮

只是稍微修改下布局文件:

<?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="com.lg.appbardemo.ScrollingActivity">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/app_bar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:fitsSystemWindows="true"
        android:theme="@style/AppTheme.AppBarOverlay">
            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                app:layout_scrollFlags="scroll|enterAlways"
                android:layout_height="?attr/actionBarSize"
                app:layout_collapseMode="pin"
                app:popupTheme="@style/AppTheme.PopupOverlay" />

    </android.support.design.widget.AppBarLayout>

    <android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_margin="@dimen/text_margin"
            android:text="@string/large_text" />

    </android.support.v4.widget.NestedScrollView>


</android.support.design.widget.CoordinatorLayout>

擴(kuò)展ToolBar源碼地址:http://down.51cto.com/data/2222027

收縮ToolBar源碼地址:http://down.51cto.com/data/2222230

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI