亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

AlertDialog的顯示位置可以調整嗎

小樊
91
2024-09-04 17:00:31
欄目: 編程語言

AlertDialog 是一個用于在 Android 應用程序中顯示對話框的類

  1. 創建一個自定義布局文件,例如 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>
  1. 在你的 Activity 或 Fragment 中,使用 AlertDialog.Builder 類創建一個 AlertDialog 實例,并將自定義布局文件設置為對話框的內容視圖。
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setView(R.layout.custom_alert_dialog);
AlertDialog alertDialog = builder.create();
  1. 顯示對話框并設置其顯示位置。你可以使用 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 的顯示位置。請注意,這里的位置值是以像素為單位的,你可能需要根據屏幕密度進行轉換。

0
洛宁县| 县级市| 中牟县| 哈密市| 五寨县| 竹北市| 天长市| 班戈县| 外汇| 三门峡市| 海安县| 花莲市| 奉贤区| 扶沟县| 白玉县| 雅江县| 墨竹工卡县| 通辽市| 成武县| 封丘县| 莱西市| 泰兴市| 舒兰市| 平谷区| 昌平区| 峨眉山市| 双柏县| 班戈县| 宁德市| 玉田县| 九台市| 松潘县| 响水县| 万源市| 沧州市| 德保县| 兴海县| 富阳市| 万州区| 敦煌市| 湟中县|