gpt4 book ai didi

android - 在 Android Switch 组件上定义自定义样式(主题)

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:48:14 25 4
gpt4 key购买 nike

我是 Android 开发的新手,也是 Android 主题/定制方面的新手,这看起来是一个广泛的主题......

我正在尝试为我的 Switch 组件提供一种特殊的外观和感觉,但我无法实现我想要的效果,avan 在互联网上查找了很多资源之后。

这让我发疯!!
在此先感谢您的帮助,Android 高手!

上下文

我在一个现有的 android 应用程序 (v1) 上工作,它是 minSdkVersion="8"。

因此,该应用程序使用第 3 方库来获取操作栏 (ActionBar Sherlock) 和开关 (SwitchCompatLibrary):

今天,我们正在制作 v2 版本,minSdkVersion="14"。

我们的客户还要求我们更改默认开关的外观。

目标是让 thiese 开关:
enter image description here enter image description here

这看起来真的很像最新的 Material 设计开关,但使用橙色而不是“绿-蓝”颜色,如 here .

约束

因为我们现在是 minSdk 14,我们可以删除两个库“ActionBarSherlock”和“SwitchCompatLibrary”,但是这不是一个选项。确实,我们没有时间这样做......

事实上,我试图在项目的 gradle 文件 appcompat-v7 中添加依赖项,以便尝试使用内部带有 Material 主题的 native 开关组件(see here),但这给了我由于上面提到的 2 个库的重复属性定义而导致的错误。所以我不能使用它,而且我不确定它是否有效...

dependencies {
(...)

compile project(':actionbarsherlock')
compile project(':switchCompatLibrary')
compile files('libs/android-support-v4.jar')

// incompatible avec actionbarsherlock and SwitchCompatLibrary...
// compile "com.android.support:appcompat-v7:22.0.+"

(...)
}

现有代码

所以这是实际代码。

在我的 layout.xml 文件中,我使用了 SwitchCompatLibrary 开关:

        <de.ankri.views.Switch
android:id="@+id/switchButtonNotification"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true" />

在我的 themes.xml 文件中:

<style name="Theme.Orange" parent="@style/Theme.Sherlock">
...
<!-- Theme switch with SwitchCompatLibrary -->
<item name="switchStyle">@style/switch_light</item>
<item name="textAppearance">@style/TextAppearance</item>
</style>

像这样在 SwitchCompatLibrary 本身中定义样式信息

样式.xml :

<resources xmlns:android="http://schemas.android.com/apk/res/android">

<style name="switch_light">
<item name="track">@drawable/switch_track_holo_light</item>
<item name="thumb">@drawable/switch_inner_holo_light</item>
<item name="textOn">@string/textOn</item>
<item name="textOff">@string/textOff</item>
<item name="thumbTextPadding">12dip</item>
<item name="switchMinWidth">96dip</item>
<item name="switchPadding">16dip</item>
<item name="switchTextAppearance">@style/TextAppearance</item>
</style>

<style name="TextAppearance">
<item name="textColor">?android:attr/textColorPrimary</item>
<item name="textColorHighlight">?android:attr/textColorHighlight</item>
<item name="textColorHint">?android:attr/textColorHint</item>
<item name="textColorLink">?android:attr/textColorLink</item>
<item name="textSize">16sp</item>
</style>
</resources>

switch_inner_holo_light.xml

<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_enabled="false" android:drawable="@drawable/switch_thumb_disabled_holo_light" />
<item android:state_pressed="true" android:drawable="@drawable/switch_thumb_pressed_holo_light" />
<item android:state_checked="true" android:drawable="@drawable/switch_thumb_activated_holo_light" />
<item android:drawable="@drawable/switch_thumb_holo_light" />
</selector>

switch_track_holo_light.xml

<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_focused="true" android:drawable="@drawable/switch_bg_focused_holo_light" />
<item android:drawable="@drawable/switch_bg_holo_light" />
</selector>

结果是这样的:
enter image description here enter image description here

我尝试了什么

使用原生开关

因为我现在至少是 API 14,所以我首先尝试在我的 layout.xml 中用“android.widget.Switch”替换“de.ankri.views.Switch”,但是样式不再适用(蓝色而是激活开关或橙色)...
enter image description here enter image description here

但是,直接在每个开关中定义主题(as described here)似乎效果更好,因为我有一个橙色的开关:

    <Switch
android:id="@+id/switchButtonNotification"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
tools:checked="true"
android:thumb="@drawable/switch_inner_holo_light"
android:track="@drawable/switch_track_holo_light"
android:layout_alignParentRight="true" />

奇怪...我不知道为什么,所以我不会这样做并保留“de.ankri.views.Switch”组件。

使用 SwitchCompatLibrary 开关并做我自己的样式

然后我尝试保留“de.ankri.views.Switch”组件并做与 SwitchCompatLibrary 相同的事情,但用我自己的样式覆盖“@style/switch_light”样式,使用新的可绘制轨道和拇指

主题.xml :

<style name="Theme.Orange" parent="@style/Theme.Sherlock">
...
<!-- Theme switch with SwitchCompatLibrary -->
<item name="switchStyle">@style/Switch.Orange</item>
<item name="textAppearance">@style/TextAppearance</item>
</style>

样式.xml :

<style name="Switch.Orange" parent="@style/switch_light">
<item name="track">@drawable/switch_track_orange</item>
<item name="thumb">@drawable/switch_thumb_orange</item>
<item name="textOn">@string/textOn</item>
<item name="textOff">@string/textOff</item>
<item name="thumbTextPadding">12dip</item>
<item name="switchMinWidth">96dip</item>
<item name="switchPadding">16dip</item>
<item name="switchTextAppearance">@style/TextAppearance</item>
</style>

switch_thumb_orange.xml

<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_enabled="false" android:drawable="@drawable/switch_thumb_normal_orange" />
<item android:state_pressed="true" android:drawable="@drawable/switch_thumb_activated_orange" />
<item android:state_checked="true" android:drawable="@drawable/switch_thumb_activated_orange" />
<item android:drawable="@drawable/switch_thumb_normal_orange" />
</selector>

switch_thumb_activated_orange.9.png enter image description here

switch_thumb_normal_orange.9.png enter image description here

switch_track_orange.xml

<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_enabled="false" android:drawable="@drawable/switch_track_normal_orange" />
<item android:state_checked="true" android:drawable="@drawable/switch_track_activated_orange" />
<item android:state_focused="true" android:drawable="@drawable/switch_track_activated_orange" />
<item android:drawable="@drawable/switch_track_normal_orange" />
</selector>

switch_track_activated_orange.9.png enter image description here

switch_track_normal_orange.9.png enter image description here

结果:

结果太糟糕了!! :
enter image description here enter image description here

我哪里错了?我尝试更改 styles.xml 中的“thumbTextPadding”、“switchMinWidth”和“switchPadding”,但没有很好的结果。

也许我的 9-patch 文件有误?

最佳答案

这篇文章描述了您的需求:http://www.materialdoc.com/switch/

如果着色不起作用 (api < 21),请查看 this stackoverflow post.

希望对你有帮助!

关于android - 在 Android Switch 组件上定义自定义样式(主题),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31678486/

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