将文本添加到可绘制的形状

时间:2014-05-03 16:11:16

标签: android android-listview android-animation android-drawable

我有这个可绘制的:

<?xml version="1.0" encoding="utf-8" ?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" >
<shape>
  <solid
      android:color="@android:color/transparent" />
</shape>
</item>

<item>
<shape>
  <gradient
      android:startColor="#8FED85"
      android:endColor="#4CD43D"
      android:angle="270" />
</shape>
</item>
</selector>

使用这个显示:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" 
android:enterFadeDuration="@android:integer/config_longAnimTime" 
android:exitFadeDuration="@android:integer/config_longAnimTime">


<item android:drawable="@android:color/transparent" android:state_focused="true"   android:state_pressed="false"/>
<item android:drawable="@android:color/transparent" android:state_pressed="true"/>
<item android:drawable="@drawable/listview_selector"/>


 </selector>

以下是listview:

<ListView
    android:id="@+id/list"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_below="@+id/imageView9"
    android:divider="#fff"
    android:cacheColorHint="#00000000"
    android:dividerHeight="0.9dp"
    android:listSelector="@drawable/list_selector_animation"
    android:choiceMode="singleChoice"
    android:layout_marginBottom="50dp"
    android:background="#fff"
    >

</ListView>

drawable是一个绿色的“盒子”,当列表中的项目被选中时会显示在列表视图中,我想要做的是在drawable中显示一个文本,如“再次点击发送”或其他内容像那样,关于如何在可绘制形状中添加文本的任何提示?

1 个答案:

答案 0 :(得分:1)

你可以将这个drawable放在一个按钮上,作为它的背景,并使用它的setText来添加文本