谷歌播放等标签

时间:2017-05-06 11:23:20

标签: android android-tabs

我创建了存储引号的应用程序,我需要对引号进行排序(按作者排序)。实际上在标签中我想展示这些方式。

但我真的很喜欢google play app这样的标签

enter image description here

我想在我的申请中做同样的事情。

请借助我能做到的事情告诉我?

感谢。

1 个答案:

答案 0 :(得分:0)

在drawable文件夹中创建xml并尝试使用此代码来设置按钮样式,并将其用作按钮的背景,如R.drawable.buttonStyle

  <selector xmlns:android="http://schemas.android.com/apk/res/android" >
 <item >
        <shape android:shape="rectangle" >
            <corners android:radius="5dip" />
            <stroke android:width="1dip" android:color="#1abc9c" />
            <gradient android:angle="-90" android:startColor="#1abc9c" android:endColor="#1abc9c" />
        </shape>
    </item>
</selector>