gpt4 book ai didi

java - 如何制作固定底部对话框

转载 作者:行者123 更新时间:2023-12-02 10:26:06 25 4
gpt4 key购买 nike

我想制作一个底部对话框,它将显示我提供的文本,并且我可以随时隐藏和显示它。此对话框将显示在所有 Activity 中。例如,如果应用程序现在未连接到服务器,我将显示此底部对话框,显示“无连接”,并且此对话框将显示在屏幕上的任何 Activity 中。如何制作这个对话框,我尝试用 XML 制作它,但我需要在每个 Activity 中编写它的显示/隐藏方法,这是一项乏味的工作。这是一张显示我正在尝试制作的底部对话框的图像。

enter image description here

最佳答案

创建一个易于在所有 Activity 中显示的自定义对话框。可以根据图片中的样式自定义对话框。

这里是一个例子,添加内容之前必须调用requestFeature(),其他设置需要在setContentView()之后。

public class YOUR_DIALOG extends Dialog {
private String mText;

public YOUR_DIALOG(Context context, String text) {
super(context);
requestWindowFeature(Window.FEATURE_NO_TITLE);
mText = text;
}

@Override
public void onStart() {
super.onStart();

Window dialogWindow = getWindow();

dialogWindow.getAttributes().width = android.widget.ListPopupWindow.MATCH_PARENT;
dialogWindow.setGravity(Gravity.BOTTOM | Gravity.CENTER_HORIZONTAL);
dialogWindow.setBackgroundDrawable(new ColorDrawable(0xffff7320));
dialogWindow.clearFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND);
}

// Everything else remains the same, as is the case with the normal dialog box.
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.your_dialog_layout);

textview = findViewById(...);
textview.setText(mText);
}
}

以及布局

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<TextView
android:id="@+id/textview"
android:textAppearance="@android:style/TextAppearance.Material.Medium"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:padding="10dp"
android:drawablePadding="10dp"
android:drawableLeft="@mipmap/ic_launcher"
android:textStyle="bold"
android:textColor="#fff"/>
</LinearLayout>

在您的 Activity 中

new YOUR_DIALOG(this,"Dialog").show();

关于java - 如何制作固定底部对话框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53948478/

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