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

 

posted @ 2017-05-24 11:40  少斌  阅读(495)  评论(0编辑  收藏  举报