我创建了存储引号的应用程序,我需要对引号进行排序(按作者排序)。实际上在标签中我想展示这些方式。
但我真的很喜欢google play app这样的标签
我想在我的申请中做同样的事情。
请借助我能做到的事情告诉我?
感谢。
答案 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>