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

时间:2021-08-03 09:30:24

找到AndroidManifest.xml ,修改activity的 theme属性。

原来的:

<activity
                android:name=".WXPageActivity"
                android:label="@string/app_name"
                android:screenOrientation="portrait"
                android:theme="@android:style/Theme.NoTitleBar">

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

修改后的:

<activity
                android:name=".WXPageActivity"
                android:label="@string/app_name"
                android:screenOrientation="portrait"
                android:theme="@android:style/Theme.Holo.Light.NoActionBar">

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

修改成holo的样式以后还有其他的一些视觉效果也变漂亮了