我想获得标签,就像图片中显示的一样,问题是倾斜线,我已经尝试过左右可绘制的代码,如下所示:
right.xml
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@android:color/transparent" />
<stroke android:width="1dip" android:color="@color/blueJiffy"/>
<corners
android:bottomRightRadius="@dimen/dph5"
android:topRightRadius="@dimen/dph5" />
</shape>
left.xml
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@android:color/transparent" />
<stroke android:width="1dip" android:color="@color/blueJiffy"/>
<corners
android:bottomLeftRadius="@dimen/dph5"
android:topLeftRadius="@dimen/dph5" />
</shape>
使用这个我已经达到了效果:
我还要将点击的标签颜色设置为蓝色,之前的标签应为白色
请注意,这些标签已在facebook messenger android应用程序中提供。