實戰Android 上推下拉——隱藏、顯示ActionBar

鋸齒流沙發表於2017-12-26

在很多的APP設定中都會有:根據使用者的手勢上推或下拉頁面列表,然後隱藏或顯示ActionBar。這樣子可以提供使用者一個更加友好的介面,增強使用者體驗。

實踐介面效果圖:

actionbar.png

actionbar.png

這裡剛剛開始的時候actionbar是全部顯示的,隨著列表慢慢往上推,actionbar漸漸隱藏,下拉的時候漸漸顯示出來。給使用者更加友好的視覺效果。

自定義ScrollView

MyScrollView

public class MyScrollView extends ScrollView {

    private OnTransListener mTransListener;


    public void setTransListener(OnTransListener transListener) {
        mTransListener = transListener;
    }

    public MyScrollView(Context context) {
        super(context);
    }

    public MyScrollView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public MyScrollView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    protected void onScrollChanged(int l, int t, int oldl, int oldt) {
        super.onScrollChanged(l, t, oldl, oldt);
        if (mTransListener != null) {
            int scrollY = getScrollY();
            int height = getContext().getResources().getDisplayMetrics().heightPixels;

            Log.i("tags", "scrollY:" + scrollY);

            Log.i("tags", "height:" + height);

            if (scrollY < height / 3f) {
                //alpha=滑出去的高度/(screen_height/3f)
                mTransListener.trans(1 - scrollY / (height / 4f));
            }
        }
    }

    public interface OnTransListener {
        void trans(float alpha);
    }

}
複製程式碼

自定義一個ScrollView,在ScrollView滑動的時候會不停的回撥onScrollChanged方法,我們看可以在onScrollChanged裡面獲取滑動的高度,然後根據高度來設定alpha值,通過alpha來改變actionbar的alpha。這裡還需要設定回撥OnTransListener,使用時只需要設定自定義的ScrollView的OnTransListener回撥即可。

xml佈局

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    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.main.toolbar.ToolBarActivity">


    <com.main.toolbar.MyScrollView
        android:id="@+id/scrollView"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:clipChildren="false"
        android:clipToPadding="false"
        android:paddingTop="?attr/actionBarSize">

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:orientation="vertical">

            <Button
                android:id="@+id/button1"
                style="?android:attr/buttonStyleSmall"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_margin="5dp"
                android:text="Button0"/>

            <Button
                style="?android:attr/buttonStyleSmall"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_margin="5dp"
                android:text="Button1"/>

            <Button
                style="?android:attr/buttonStyleSmall"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_margin="5dp"
                android:text="Button2"/>

            <Button
                style="?android:attr/buttonStyleSmall"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_margin="5dp"
                android:text="Button3"/>

            <Button
                style="?android:attr/buttonStyleSmall"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_margin="5dp"
                android:text="Button4"/>

            <Button
                style="?android:attr/buttonStyleSmall"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_margin="5dp"
                android:text="Button5"/>

            <Button
                style="?android:attr/buttonStyleSmall"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_margin="5dp"
                android:text="Button6"/>

            <Button
                style="?android:attr/buttonStyleSmall"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_margin="5dp"
                android:text="Button7"/>

            <Button
                style="?android:attr/buttonStyleSmall"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_margin="5dp"
                android:text="Button8"/>

            <Button
                style="?android:attr/buttonStyleSmall"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_margin="5dp"
                android:text="Button8"/>

            <Button
                style="?android:attr/buttonStyleSmall"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_margin="5dp"
                android:text="Button9"/>

            <Button
                style="?android:attr/buttonStyleSmall"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_margin="5dp"
                android:text="Button10"/>

            <Button
                style="?android:attr/buttonStyleSmall"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_margin="5dp"
                android:text="Button11"/>

            <Button
                style="?android:attr/buttonStyleSmall"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_margin="5dp"
                android:text="Button12"/>

            <Button
                style="?android:attr/buttonStyleSmall"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_margin="5dp"
                android:text="Button13"/>

            <Button
                style="?android:attr/buttonStyleSmall"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_margin="5dp"
                android:text="Button14"/>

            <Button
                style="?android:attr/buttonStyleSmall"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_margin="5dp"
                android:text="Button15"/>
        </LinearLayout>
    </com.main.toolbar.MyScrollView>

    <android.support.v7.widget.Toolbar
        android:id="@+id/tool_bar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        android:title="標題">

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@mipmap/ic_launcher"/>
    </android.support.v7.widget.Toolbar>

</RelativeLayout>

複製程式碼

這裡佈局需要注意的是:

1)Toolbar需要蓋在自定義ScrollView上面。

2)自定義ScrollView需要設定一下屬性

android:clipChildren="false"
android:clipToPadding="false"
android:paddingTop="?attr/actionBarSize"
複製程式碼

設定ActionBar的alpha值

public class ToolBarActivity extends AppCompatActivity {

    private Toolbar mToolbar;
    private MyScrollView mScrollView;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_tool_bar);
        mToolbar = (Toolbar)this.findViewById(R.id.tool_bar);
        setSupportActionBar(mToolbar);

        mToolbar.setNavigationOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {

            }
        });

        mScrollView = (MyScrollView)this.findViewById(R.id.scrollView);
        mScrollView.setTransListener(new MyScrollView.OnTransListener() {
            @Override
            public void trans(float alpha) {
                Log.i("tag","alpha:"+alpha);
                mToolbar.setAlpha(alpha);
            }
        });


    }
}
複製程式碼

在activity中直接設定MyScrollView的回撥方法setTransListener,在回撥裡面設定ActionBar的alpha值即可。

這樣就可以完成根據上推或下拉選單來隱藏或顯示ActionBar了。

相關文章