android中的复杂形状

时间:2015-04-09 17:40:20

标签: android

我想在android中制作形状,如下面的图像。

enter image description here

enter image description here

enter image description here

此处每个文字都是TextView,这是三种情况,

  1. 如果我只发送一个文字,那么视图可能会像第一张图片。
  2. 三个文本意味着视图可能像第二个图像。
  3. 四个文本意味着视图可能像第三个图像。
  4. 有可能吗?

1 个答案:

答案 0 :(得分:1)

第一张图片是中风红色和纯黄色的圆圈

  <?xml version="1.0" encoding="utf-8" ?> 
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="circle">
<stroke android:color="@color/red" android:width="1dp" /> 
<solid android:color="@color/yellow" /> 
</shape>

将此drawable设置为文本视图的背景并设置&#34; 12&#34;作为文本视图的文本。