Android:TextView突出显示

时间:2012-11-13 16:04:10

标签: android textview highlight thin

就像一支黄色荧光笔。如何在TextView文本上绘制一条细黄线,两端有圆角?

谢谢

1 个答案:

答案 0 :(得分:0)

您可以按照自己的意愿使用渐变并控制它,如下所示:

 <?xml version="1.0" encoding="utf-8"?>
  <shape xmlns:android="http://schemas.android.com/apk/res/android"
     android:shape="rectangle">
   <gradient android:startColor="#FFFF00" android:centerColor="#FFFF00"
         android:endColor="#FFFF00" android:angle="0" /> 
     <corners android:radius="30dp"  /> 
 </shape>

并在xml中将textview引用到该渐变,如下所示:

   android:background="@drawable/gredient"  
希望能帮到你。