AlertDialog
是一個用于在 Android 應用程序中顯示對話框的類
custom_alert_dialog.xml
。在這個布局文件中,你可以設置對話框的大小、位置和樣式。<?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">
<!-- Add your custom views here -->
</LinearLayout>
AlertDialog.Builder
類創建一個 AlertDialog
實例,并將自定義布局文件設置為對話框的內容視圖。AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setView(R.layout.custom_alert_dialog);
AlertDialog alertDialog = builder.create();
WindowManager.LayoutParams
類來設置對話框的位置。alertDialog.show();
WindowManager.LayoutParams layoutParams = new WindowManager.LayoutParams();
layoutParams.copyFrom(alertDialog.getWindow().getAttributes());
// Set the desired position (x, y) and gravity
layoutParams.x = 100; // X position in pixels
layoutParams.y = 200; // Y position in pixels
layoutParams.gravity = Gravity.TOP | Gravity.START;
alertDialog.getWindow().setAttributes(layoutParams);
通過這種方法,你可以自由地調整 AlertDialog
的顯示位置。請注意,這里的位置值是以像素為單位的,你可能需要根據屏幕密度進行轉換。