中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
泰来县| 博野县| 依兰县| 长兴县| 静安区| 吉林省| 乌兰浩特市| 大石桥市| 繁昌县| 赤水市| 德惠市| 宜宾县| 荆州市| 怀远县| 大埔县| 香河县| 桐庐县| 科技| 闽侯县| 宁津县| 清原| 涞源县| 桐庐县| 景德镇市| 进贤县| 荆门市| 佳木斯市| 鄂托克旗| 东乌| 鱼台县| 岗巴县| 横峰县| 巨鹿县| 温宿县| 会理县| 桃江县| 涿鹿县| 临泉县| 蓬溪县| 禄劝| 祁门县|