gpt4 book ai didi

android - 向可绘制形状添加文本

转载 作者:行者123 更新时间:2023-11-30 02:54:55 26 4
gpt4 key购买 nike

我有这个可绘制对象:

<?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 是一个绿色的“框”,当列表中的项目被选中时,它会显示在 ListView 中,我想做的是在 drawable 中显示一个文本,比如“再次点击发送”之类的像那样,关于如何在可绘制形状内添加文本的任何提示?

最佳答案

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

关于android - 向可绘制形状添加文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23446835/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com