當然可以!下面是一個簡單的 Android BottomSheetDialog 示例
首先,在 res/layout
目錄下創建一個新的布局文件 bottom_sheet_dialog_fragment.xml
,用于定義 BottomSheetDialog 的布局內容:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="16dp">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="這是一個 BottomSheetDialog 示例"
android:textSize="18sp"
android:gravity="center" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="點擊關閉 BottomSheetDialog"
android:onClick="onCloseClick" />
</LinearLayout>
接下來,創建一個新的 Java 類 BottomSheetDialogFragment.java
,繼承自 DialogFragment
,并重寫 onCreateDialog
方法:
import android.app.Dialog;
import android.os.Bundle;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.annotation.Style;
import com.google.android.material.bottomsheet.BottomSheetDialog;
@Style(style = DialogFragment.STYLE_NORMAL)
public class BottomSheetDialogFragment extends DialogFragment {
@NonNull
@Override
public Dialog onCreateDialog(@Nullable Bundle savedInstanceState) {
return new BottomSheetDialog(requireContext(), R.style.BottomSheetDialogTheme);
}
}
在這個類中,我們使用了 BottomSheetDialog
類來創建一個帶有自定義布局的 BottomSheetDialog。同時,我們還需要在 styles.xml
文件中定義一個名為 BottomSheetDialogTheme
的樣式,以便為 BottomSheetDialog 設置主題:
<style name="BottomSheetDialogTheme" parent="Theme.MaterialComponents.Light.BottomSheetDialog">
<!-- 在這里自定義 BottomSheetDialog 的樣式 -->
</style>
最后,在需要顯示 BottomSheetDialog 的 Activity 中,創建一個 BottomSheetDialogFragment
對象,并調用 show
方法來顯示它:
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// 創建一個 BottomSheetDialogFragment 對象
BottomSheetDialogFragment bottomSheetDialogFragment = new BottomSheetDialogFragment();
// 顯示 BottomSheetDialog
bottomSheetDialogFragment.show(getSupportFragmentManager(), "bottom_sheet_dialog");
}
}
現在運行你的應用,當點擊某個按鈕時,BottomSheetDialog 應該會顯示出來。