-
Creator 版本:
-
目标平台:
-
重现方式:关闭多点触摸
-
首个报错:
-
之前哪个版本是正常的:
-
手机型号:
-
手机浏览器:
-
编辑器操作系统:
-
重现概率:
这个文件在哪可以找到
res/values/style.xml
感谢大佬!!!!!!!!!!!!!
默认不是只有一个string.xml吗,这个style哪来的
自己创建一个,可以先了解下安卓的基础知识,我建议你直接用代码来操作这个。
只写这两句就行吗,可以发一个大佬的这个文件吗
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="xxx" parent="@android:style/Theme.NoTitleBar.Fullscreen">
<!--令主题无标题-->
<item name="android:windowNoTitle">true</item>
</style>
</resources>
还需要再manifest上加入这个style
// ...
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:usesCleartextTraffic="true"
android:theme="@style/xxx"
tools:replace="android:allowBackup">
// ...