Android BottomSheet 通常用于在屏幕底部显示额外的内容,可以与主内容区域进行交互。要使 BottomSheet 响应事件,您需要执行以下步骤:
dependencies {
implementation 'com.google.android.material:material:1.4.0'
}
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- 主内容区域 -->
<LinearLayout
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<!-- 在这里添加主内容 -->
</LinearLayout>
<!-- BottomSheet 内容区域 -->
<LinearLayout
android:id="@+id/bottom_sheet"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior">
<!-- 在这里添加 BottomSheet 内容 -->
</LinearLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
import com.google.android.material.bottomsheet.BottomSheetBehavior;
public class MainActivity extends AppCompatActivity {
private BottomSheetBehavior<?> bottomSheetBehavior;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// 获取 BottomSheet 内容区域的引用
View bottomSheet = findViewById(R.id.bottom_sheet);
// 获取 BottomSheetBehavior 实例
bottomSheetBehavior = BottomSheetBehavior.from(bottomSheet);
// 设置事件监听器
bottomSheetBehavior.addBottomSheetCallback(new BottomSheetBehavior.BottomSheetCallback() {
@Override
public void onStateChanged(@NonNull View bottomSheet, int newState) {
// 当 BottomSheet 状态改变时调用
if (newState == BottomSheetBehavior.STATE_EXPANDED) {
// BottomSheet 完全展开
} else if (newState == BottomSheetBehavior.STATE_COLLAPSED) {
// BottomSheet 完全折叠
} else if (newState == BottomSheetBehavior.STATE_HIDDEN) {
// BottomSheet 完全隐藏
}
}
@Override
public void onSlide(@NonNull View bottomSheet, float slideOffset) {
// 当 BottomSheet 滑动时调用
}
});
}
}
现在,您已经成功设置了 BottomSheet 的响应事件。您可以根据需要自定义 onStateChanged 和 onSlide 方法中的逻辑。