gpt4 book ai didi

Android : Theme. Holo VS Theme.AppCompat

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

我使用“@android:style/Theme.Holo”作为我的游戏主题:

enter image description here

但是为了能够设置 snackbar 小部件,我别无选择,只能使用“@style/Theme.AppCompat”,否则我会收到此错误消息:

You need to use a Theme.AppCompat theme (or descendant) with the design library

问题是“@style/Theme.AppCompat”在视觉上完全不同:

enter image description here

我可以做什么来保持与“@android:style/Theme.Holo”相同的视觉效果,但同时能够使用 snackbar 小部件?

编辑根据 Yoann Hercouet 的解决方案,结果如下:

enter image description here

缺少什么?

最佳答案

我终于找到了解决方案:

AndroidManifest.xml:

<application
android:theme="@style/Theme.AppCompat"
...

MyDialog.java:

new AlertDialog.Builder(new ContextThemeWrapper(context, android.R.style.Theme_Holo_Dialog));

而不是:

new AlertDialog.Builder(context);

关于Android : Theme. Holo VS Theme.AppCompat,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36838033/

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