码迷,mamicode.com
首页 > 其他好文 > 详细

weex打包apk TimePicker调整成Holo的样式

时间:2017-05-24 12:47:28      阅读:310      评论:0      收藏:0      [点我收藏+]

标签:logs   images   android   image   code   string   not   net   idm   

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的样式

标签:logs   images   android   image   code   string   not   net   idm   

原文地址:http://www.cnblogs.com/shaobin86/p/6898109.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!