gpt4 book ai didi

android - 警告对话框的背景颜色如何设置为窗口

转载 作者:行者123 更新时间:2023-11-30 05:01:19 25 4
gpt4 key购买 nike

我正在 Android 平台上进行这样的警告对话所以请任何人帮助我

/image/avVY0.png

最佳答案

首先创建一个 Activity 并将其设计为您提到的弹出窗口:

在 Activity 的 onCreate() 方法中编写此代码:

        DisplayMetrics dm=new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(dm);

int width=dm.widthPixels;
int height=dm.heightPixels;

getWindow().setLayout((int)(width*.9), ((int)(height*.6))); //multiply by .9 or .6 defines the width and height of your pop up, you can change it based on your requirement

像这样创建一个自定义主题:

<style name="AppTheme.TranslucentPopupTheme">

<item name="android:windowNoTitle">true</item>
<item name="android:backgroundDimEnabled">true</item>

<item name="android:windowIsTranslucent">true</item>
</style>

将此添加到此弹出 Activity 的 list 中:

android:theme="@style/AppTheme.TranslucentPopupTheme"

关于android - 警告对话框的背景颜色如何设置为窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58196472/

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