0

我的应用程序中有一个 EditText .. EditText 突出显示了漂亮的角落。

我想用像我的 EditText 这样的漂亮突出显示的文本来做类似的 TextView。有一个例子: 我漂亮的突出显示 EditText

是否可以使用 html 来完成,或者我应该使用画布?如果可以用画布,你能给我几个例子吗?

UPD:我想要闪耀的文字。像这样的东西 -例子

4

1 回答 1

0

您还可以使用九个补丁图像作为您的文本视图的背景。

Android中圆角位图的边框

您可以使用选择器并设置文本视图的背景。无需使用 html 或画布。

可绘制文件夹中的 bkg.xml

 <?xml version="1.0" encoding="utf-8"?>
 <selector xmlns:android="http://schemas.android.com/apk/res/android">
 <item android:state_pressed="true" 
    android:drawable="@drawable/pressed" />
 <item  android:state_focused="false" 
    android:drawable="@drawable/normal" />
 </selector>

正常的.xml

<?xml version="1.0" encoding="UTF-8"?> 
<shape xmlns:android="http://schemas.android.com/apk/res/android"> 
<solid android:color="#FFFFFF"/>    
<stroke android:width="3dp"

<padding android:left="5dp"
         android:top="5dp"
         android:right="5dp"
         android:bottom="5dp"/> 
    <corners android:bottomRightRadius="7dp"
         android:bottomLeftRadius="7dp" 
         android:topLeftRadius="7dp"
         android:topRightRadius="7dp"/> 
         </shape>

按下的.xml

<?xml version="1.0" encoding="UTF-8"?> 
<shape xmlns:android="http://schemas.android.com/apk/res/android"> 
<solid android:color="#FF1A47"/>    
<stroke android:width="3dp"
        android:color="#0FECFF"/>
<padding android:left="5dp"
         android:top="5dp"
         android:right="5dp"
         android:bottom="5dp"/> 
<corners android:bottomRightRadius="7dp"
         android:bottomLeftRadius="7dp" 
         android:topLeftRadius="7dp"
         android:topRightRadius="7dp"/> 
</shape>

将文本视图的背景设置为

     android:background="@drawable/bkg"

在此处输入图像描述

于 2013-05-22T05:47:49.087 回答