gpt4 book ai didi

java - Android - 自定义 AlertDialog 背景颜色

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:55:51 43 4
gpt4 key购买 nike

所以我看到我们可以有灰色和白色(当设置反色...)背景颜色的警报对话框。

为了了解我为什么要检查 sdk 的 themes.xml,检查它我被引导到可绘制对象,然后我意识到警报对话框背景不是以编程方式完成的,而是通过一些图像完成的。当我们使用 LayoutInflater 设置不同的背景颜色时,这些图像保证在对话框的顶部(标题区域)和底部(按钮区域正上方)有两条灰色(或白色,当反色)水平线。

所以我的问题是,由于 LayoutInflator 没用,我猜我必须继承 alertdialog,你建议我怎么做才能生成具有不同背景颜色的 AlertDialog?我应该覆盖什么?

最佳答案

我最终没有使用 AlertDialog,而是使用了 Dialog。要获得自定义外观:

1-创建对话框并删除标题区域(否则顶部会出现空白灰色区域):

myDialog = new Dialog(this);
myDialog.requestWindowFeature(Window.FEATURE_NO_TITLE);

2-在xml中设计一个布局,并设置为对话框的内容:

myDialog.setContentView(R.layout.mydialog_layout);

3-如果布局不是圆角矩形,它将与对话框的圆角相交。因此,将布局设计为圆角矩形:

在 mydialog_layout.xml 中:

android:background = "@layout/mydialog_shape"

mydialog_shape.xml:

<?xml version="1.0" encoding="UTF-8"?> 
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle"
>
<gradient android:startColor="#FF0E2E57"
android:endColor="#FF0E2E57"
android:angle="225" android:paddingLeft="20dip"/>

<corners android:bottomRightRadius="5dp" android:bottomLeftRadius="5dp"
android:topLeftRadius="5dp" android:topRightRadius="5dp" android:paddingLeft="20dip"/>
</shape>

4-将监听器添加到您的 Activity 中的按钮:

Button button = (Button)myDialog.findViewById(R.id.dialogcancelbutton);
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
myDialog.cancel();
}});

就是这样。

关于java - Android - 自定义 AlertDialog 背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3995058/

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