GoWalla应用程序 - 选项卡

时间:2010-05-28 19:03:46

标签: android tabs

我是一个Android开发人员,他们对好看的标签很着迷。到目前为止,我见过的最好的可能是GoWalla应用程序中的那个。

有没有人对他们如何实现这种外观有一些初步想法?

由于

1 个答案:

答案 0 :(得分:0)

如果您的问题与图标有关,则标签的图标可以是StateListDrawable

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:state_selected="true"
        android:state_pressed="false"
        android:drawable="@drawable/foo_when_selected"
    />
    <item
        android:drawable="@drawable/foo_normal"
    />
</selector>

然后,您可以对选定的正常情况使用不同的PNG(GoWalla示例中的红橙色与灰色)。