gpt4 book ai didi

android - 如何将主题设置为特定项目

转载 作者:行者123 更新时间:2023-11-29 14:00:43 25 4
gpt4 key购买 nike

我想设置光环主题。数字选择器和显示它的 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>

最佳答案

Activity


  • 要从 list 文件做到这一点:在您的 Activity 标签中附加 android:theme="@android:style/Theme.Holo.Light"
  • 要在 Activity 类中实现,可以通过 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com