作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想设置光环主题。数字选择器和显示它的 Activity 具有不同的主题。我在 xml 属性中完成了此操作,并为数字选择器提供了光环主题。但它不起作用。请帮忙....
我的……样式.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Animations" />
<style name="Animations.GrowFromBottom">
<item name="@android:windowEnterAnimation">@anim/grow_from_bottom</item>
<item name="@android:windowExitAnimation">@anim/shrink_from_top</item>
</style>
<style name="Animations.GrowFromTop">
<item name="@android:windowEnterAnimation">@anim/grow_from_top</item>
<item name="@android:windowExitAnimation">@anim/shrink_from_bottom</item>
</style>
<style name="Animations.PopDownMenu">
<item name="@android:windowEnterAnimation">@anim/grow_from_topleft_to_bottomright</item>
<item name="@android:windowExitAnimation">@anim/shrink_from_bottomright_to_topleft</item>
</style>
<style name="AndroDev" parent="@android:style/Theme.Holo.Light"></style>
</resources>
我的 list 文件....
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.tablet"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="11" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:label="@string/app_name"
android:name=".SonyTabletActivity"
android:theme="@android:style/Theme.Black.NoTitleBar" >
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
我的 xml....
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<NumberPicker
android:id="@+id/numberPicker"
style="@style/AndroDev"
android:layout_width="100dp"
android:layout_height="100dp"
android:background="#ffffff"
android:orientation="horizontal" />
</LinearLayout>
最佳答案
android:theme="@android:style/Theme.Holo.Light"
super.setTheme(android.R.style.Theme.Holo.Light)
通过 res/values/style.xml 创建自定义样式。
<?xml version.....>
<resources>
<style name="AndroDev" parent="@android:style/Theme.Holo.Light">
<item name="android:background">#ffffff</item>
</style>
</resources>
然后在定义数字选择器 View 的 xml 中使用它:
<NumberPickerView style:"@style/AndroDev" ....>
我以 Holo.Light 主题为例。您可以更改为任何您想要的。
关于android - 如何将主题设置为特定项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9598271/
我是一名优秀的程序员,十分优秀!