weex打包apk TimePicker调整成Holo的样式
Posted 少斌
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了weex打包apk TimePicker调整成Holo的样式相关的知识,希望对你有一定的参考价值。
weex 默认的样式是android2.3的,可丑了。。。
搜索一把以后找到解决方案,如下:
找到AndroidManifest.xml ,修改activity的 theme属性。
这个是原来的:
<activity android:name=".WXPageActivity" android:label="@string/app_name" android:screenOrientation="portrait" android:theme="@android:style/Theme.NoTitleBar">
这个是修改后的:
<activity android:name=".WXPageActivity" android:label="@string/app_name" android:screenOrientation="portrait" android:theme="@android:style/Theme.Holo.Light.NoActionBar">
Theme.Holo.Light.NoActionBar 是因为我 Title导航去掉了,由weex渲染实现。 大家根据自己情况选择属性细节
PS: 意外之喜,修改成holo的样式以后还有其他的一些视觉效果也变漂亮了
参考链接:http://blog.csdn.net/weidongjian/article/details/44151923
以上是关于weex打包apk TimePicker调整成Holo的样式的主要内容,如果未能解决你的问题,请参考以下文章
cordova+vue 项目打包成Android(apk),启动黑屏问题