我正在用QtWidgets (C++)创建一个移动应用,我说过这个应用看起来像安卓的老应用:

但当我使用Qt Quick进行测试时,外观和感觉完全不同,而且更现代:

但是我不想使用qml。
我已经看到,我可以将AndroidManifest.xml文件修改为:
<manifest ...>
<application ... android:theme="@android:style/Theme.Material.Light">
...
</application>
...
</manifest>但它不起作用
有没有办法让我的qt c++ android应用程序拥有更现代的外观和感觉?
https://stackoverflow.com/questions/67025935
复制相似问题