协调者布局 实现上下滑动

activity_main

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:fitsSystemWindows="true"
    tools:context="com.tools.ceshi4.MainActivity">

    <Button
        android:id="@+id/bt_1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="按钮" />
    <include layout="@layout/layout_bottom"/>

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

layout_bottom

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/bottom_sheet"

    android:layout_width="match_parent"

    android:layout_height="match_parent"
    android:background="@android:color/black"
    android:orientation="vertical"
    app:layout_behavior="android.support.design.widget.BottomSheetBehavior">

    <LinearLayout
        android:layout_width="match_parent"
        android:orientation="vertical"
        android:layout_height="800dp"
        android:background="@android:color/holo_red_dark">

        <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="按钮" />        <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="按钮" />        <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="按钮" />        <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="按钮" />        <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="按钮" />        <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="按钮" />        <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="按钮" />        <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="按钮" />        <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="按钮" />        <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="按钮" />        <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="按钮" />        <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="按钮" />        <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="按钮" />        <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="按钮" />
    </LinearLayout>


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

package com.tools.ceshi4;

import android.os.Bundle;
import android.support.design.widget.BottomSheetBehavior;
import android.support.v4.widget.NestedScrollView;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;

import butterknife.Bind;
import butterknife.ButterKnife;
import butterknife.OnClick;

public class MainActivity extends AppCompatActivity {
    @Bind(R.id.bt_1)
    Button bt1;
    @Bind(R.id.bottom_sheet)
    NestedScrollView bottomSheet;
    private BottomSheetBehavior mBottomSheetBehavior;
    private View mBottomSheet;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        ButterKnife.bind(this);
        mBottomSheet = findViewById(R.id.bottom_sheet);
        mBottomSheetBehavior = BottomSheetBehavior.from(mBottomSheet);
        mBottomSheetBehavior.setPeekHeight(450);
        mBottomSheetBehavior.setState(BottomSheetBehavior.STATE_COLLAPSED);
    }

    private void collapsed() {
        mBottomSheetBehavior.setPeekHeight(450);
        mBottomSheetBehavior.setState(BottomSheetBehavior.STATE_COLLAPSED);
    }

    @OnClick(R.id.bt_1)
    public void onViewClicked() {
        collapsed();
    }
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

安果移不动

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值