gpt4 book ai didi

java - 如何将Dialog转化为DialogFragment?

转载 作者:行者123 更新时间:2023-11-30 06:08:10 24 4
gpt4 key购买 nike

来自 VB 世界,我今天了解到 Java 中的对话框不是模态的。我的任务是将我们在 VB.net 中为基于 Windows 的摩托罗拉设备编写的程序转换为使用 Android Studio 为 Android 摩托罗拉设备编写的 Java 程序。我正在尝试使其与 Windows 中的表单类似。我所在的表单有几个提示输入的消息框。我尝试使用 java 但注意到对话框并不总是等待响应。我读到使用对话框片段可以完成我想要做的事情。这是我为第一个对话框准备的 XML。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"

android:background="@color/colorBackgroundGray"
>

<TextView
android:id="@+id/theText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:text="Holding Text"
android:textAlignment="center"
android:textColor="@color/colorBlack"
android:textSize="30dp" />


<Button
android:id="@+id/buttonYes"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_alignParentBottom="true"
android:layout_below="@id/message"
android:layout_margin="8dp"
android:onClick="onClickYes"
android:text="Yes"
android:textSize="26dp" />

<Button
android:id="@+id/buttonNo"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_below="@id/message"
android:layout_margin="8dp"
android:onClick="onClickNo"
android:text="No"
android:textSize="26dp" />


</RelativeLayout>

这是我调用对话框的方式。

 final Dialog dialog = new Dialog(ReturnAreaActivity.this, android.R.style.Theme_Black_NoTitleBar_Fullscreen);
dialog.setContentView(R.layout.dialog_location);
dialog.setTitle("New Location Setup");
TextView message = (TextView) dialog.findViewById(R.id.theText);
message.setText("Is this location a Pick Bin");
Button buttonYes = (Button) dialog.findViewById(R.id.buttonYes);
Button buttonNo = (Button) dialog.findViewById(R.id.buttonNo);
dialog.show();

有关于需要进行哪些更改才能将对话框转变为dialogFragment 的问题。我很欣赏任何人都可以摆脱的清晰。另外,dialogFragments 的调用将在循环期间完成

谢谢

最佳答案

首先扩展 DialogFragment 并使用 AlertDialog.Builder 在方法 onCreateDialog 中创建对话框。

public class MyDialogFragment extends DialogFragment {

@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
LayoutInflater inflater = getActivity().getLayoutInflater();
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
builder.setView(inflater.inflate(R.layout.dialog_location, null))
.setMessage("Is this location a Pick Bin")
.setPositiveButton("Yes", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
// Handle "yes" button click here.
}
})
.setNegativeButton("No", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
// Handle "no" button click here.
}
});
return builder.create();
}
}

然后您可以使用 show() 方法显示 DialogFragment:

DialogFragment newFragment = new MyDialogFragment();
newFragment.show(getSupportFragmentManager(), "MyDialogFragment")

小建议 - 不要在小部件 textSize 中使用 dp,而使用 sp。您可以阅读说明here .

关于java - 如何将Dialog转化为DialogFragment?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50841437/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com