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 方法中的邏輯。