91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

Android對話框如何使用方法

小億
96
2023-08-08 15:17:09
欄目: 編程語言

Android中對話框的使用方法有以下幾種:

  1. 使用AlertDialog.Builder創建對話框
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle("對話框標題");
builder.setMessage("對話框內容");
builder.setPositiveButton("確認", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
// 點擊確認按鈕后的操作
}
});
builder.setNegativeButton("取消", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
// 點擊取消按鈕后的操作
}
});
AlertDialog dialog = builder.create();
dialog.show();
  1. 使用DialogFragment創建對話框

首先創建一個繼承自DialogFragment的類,重寫onCreateDialog方法:

public class MyDialogFragment extends DialogFragment {
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
builder.setTitle("對話框標題");
builder.setMessage("對話框內容");
builder.setPositiveButton("確認", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
// 點擊確認按鈕后的操作
}
});
builder.setNegativeButton("取消", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
// 點擊取消按鈕后的操作
}
});
return builder.create();
}
}

然后在需要顯示對話框的地方調用:

MyDialogFragment dialogFragment = new MyDialogFragment();
dialogFragment.show(getSupportFragmentManager(), "dialog");
  1. 使用自定義布局創建對話框

首先創建一個自定義布局文件,例如dialog_layout.xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/dialog_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="對話框標題"
android:textSize="18sp"
android:textColor="#000000"
android:layout_marginTop="16dp"
android:layout_marginBottom="16dp"
android:layout_gravity="center_horizontal"/>
<Button
android:id="@+id/dialog_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="確認"
android:layout_gravity="center_horizontal"/>
</LinearLayout>

然后在需要顯示對話框的地方調用:

LayoutInflater inflater = LayoutInflater.from(this);
View dialogView = inflater.inflate(R.layout.dialog_layout, null);
TextView titleTextView = dialogView.findViewById(R.id.dialog_title);
Button button = dialogView.findViewById(R.id.dialog_button);
titleTextView.setText("對話框標題");
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// 點擊按鈕后的操作
}
});
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setView(dialogView);
AlertDialog dialog = builder.create();
dialog.show();

以上是幾種常見的Android對話框的使用方法,根據不同需求選擇合適的方法即可。

0
阳谷县| 仁化县| 南开区| 雷山县| 鱼台县| 丰原市| 阜阳市| 四子王旗| 大石桥市| 大同县| 皮山县| 沙坪坝区| 新田县| 肇州县| 南郑县| 洛阳市| 循化| 宝应县| 临江市| 若尔盖县| 襄汾县| 马尔康县| 胶州市| 桦甸市| 大悟县| 开远市| 延安市| 黑河市| 通河县| 九江县| 绥滨县| 东海县| 吉林省| 广河县| 曲靖市| 菏泽市| 文安县| 汉源县| 安陆市| 高尔夫| 苍溪县|