看起来像ICS的按钮:在ICS SDK中我必须选择哪个可绘制的?

时间:2012-02-25 10:37:15

标签: android button drawable android-4.0-ice-cream-sandwich

我刚看了一下Ice Cream Sandwich的源代码,因为我试图将Holo Theme移植到所有4.0之前的设备上。

我使用了很多有用的工具:

操作栏:ActionBarSherlock

ICS背景

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
    android:angle="270"
    android:startColor="#ff020202"
    android:endColor="#ff272D33d"
    android:type="linear" />
</shape>
直到现在,一切都很棒!!!

我现在正在尝试创建一个按钮,但无法找到正确的背景:

关注来源:https://github.com/android/platform_frameworks_base/blob/master/core/res/res/drawable/btn_default.xml

我试过了:

<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_window_focused="false" android:state_enabled="true"
    android:drawable="@drawable/btn_default_normal" />
<item android:state_window_focused="false" android:state_enabled="false"
    android:drawable="@drawable/btn_default_normal_disable" />
<item android:state_pressed="true" 
    android:drawable="@drawable/btn_default_pressed" />
<item android:state_focused="true" android:state_enabled="true"
    android:drawable="@drawable/btn_default_selected" />
<item android:state_enabled="true"
    android:drawable="@drawable/btn_default_normal" />
<item android:state_focused="true"
    android:drawable="@drawable/btn_default_normal_disable_focused" />
<item
     android:drawable="@drawable/btn_default_normal_disable" />

我将每个.9.png文件复制到我的drawable文件夹中。

但不幸的是,所有这些画面看起来都很白,我无法得到类似于这个按钮的东西:

http://cdn3.staztic.com/screenshots/combourkekitchentimer-2-0.jpg

以下是所有资源:

btn_default_normal_holo_dark.9.png

enter image description here

btn_default_normal_holo_light.9.png

enter image description here

btn_default_normal.9.png

enter image description here

1 个答案:

答案 0 :(得分:4)

我不得不选择Holo Dark主题:

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

    <item android:drawable="@drawable/btn_default_normal_holo_dark" android:state_enabled="true" android:state_window_focused="false"/>
    <item android:drawable="@drawable/btn_default_disabled_holo_dark" android:state_enabled="false" android:state_window_focused="false"/>
    <item android:drawable="@drawable/btn_default_pressed_holo_dark" android:state_pressed="true"/>
    <item android:drawable="@drawable/btn_default_focused_holo_dark" android:state_enabled="true" android:state_focused="true"/>
    <item android:drawable="@drawable/btn_default_normal_holo_dark" android:state_enabled="true"/>
    <item android:drawable="@drawable/btn_default_disabled_focused_holo_dark" android:state_focused="true"/>
    <item android:drawable="@drawable/btn_default_disabled_holo_dark"/>

</selector>