参考这些问题:
Adding gradient effect to TextView in a ListView generates NPE
和
How to change color and font on ListView
我想知道如何设置具有渐变效果的TextView
ListView
的背景?
在上面的一个问题中,我最终将渐变效果添加到TextView
中的文本中。在浏览第二个问题后,似乎我只能添加固定的背景颜色。
如何将渐变添加到背景中?我应该制作CustomListAdapter
吗?
答案 0 :(得分:82)
您只需创建一个可绘制资源(请参阅下面的示例),并将其添加到您为ListItem创建的布局中。
drawable(在res \ drawable文件夹中 - 无论如何命名 - listgrad.xml for ex)可能如下所示:
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:startColor="@color/gradient_start"
android:endColor="@color/gradient_end"
android:angle="-270" />
</shape>
您可以将它添加到列表项的布局(您为此定义的layout.xml文件),例如此代码段:
<TextView
android:id="@+id/ranking_order"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/list_grad"
/>
...
答案 1 :(得分:4)
创建渐变后,您可以将它应用于几乎所有的文本视图,布局或按钮。
要了解如何创建和使用渐变,请参阅this link。
要创建渐变,您需要将其添加到以下目录
渐变代码就是这样的 -
<?xml version="1.0" encoding="UTF-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape>
<gradient
android:startColor="#ff2d9a59"
android:centerColor="#ff42959a"
android:endColor="#ff23729a"
android:angle="135"/>
</shape>
</item>
</selector>
答案 2 :(得分:1)
从这里提到:How do I create a ListView with rounded corners in Android? (我发现它非常有用。)
将以下内容添加到文件(例如gradient.xml)中,然后将其放在(res / drawable / gradient.xml)目录中。
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:startColor="#SomeGradientBeginColor"
android:endColor="#SomeGradientEndColor"
android:angle="270"/>
<corners
android:bottomRightRadius="7dp"
android:bottomLeftRadius="7dp"
android:topLeftRadius="7dp"
android:topRightRadius="7dp"/>
</shape>
完成创建此文件后,只需使用以下方法之一设置背景:
通过代码:listView.setBackgroundResource(R.drawable.customshape);
通过XML,只需将以下属性添加到容器中(例如:LinearLayout或任何字段):
android:background="@drawable/customshape"