关于这些问题:
在 ListView 中为 TextView 添加渐变效果会生成 NPE
和
我想知道如何TextView
在ListView
渐变效果中设置 a 的背景?
在上面的一个问题中,我最终将渐变效果添加到TextView
. 在浏览第二个问题后,似乎我只能添加固定的背景颜色。
如何为背景添加渐变?我应该做一个CustomListAdapter
吗?
关于这些问题:
在 ListView 中为 TextView 添加渐变效果会生成 NPE
和
我想知道如何TextView
在ListView
渐变效果中设置 a 的背景?
在上面的一个问题中,我最终将渐变效果添加到TextView
. 在浏览第二个问题后,似乎我只能添加固定的背景颜色。
如何为背景添加渐变?我应该做一个CustomListAdapter
吗?
您只需要创建一个可绘制资源(参见下面的示例),并将其添加到您为 ListItem 创建的布局中。
可绘制对象(在您的 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"
/>
...
一旦你创建了一个渐变,你可以将它应用到几乎任何东西上,比如 textView、layout 或 button。
要了解如何创建和使用渐变,请参阅此链接。
要创建渐变,您需要将其添加到以下目录
渐变代码将是这样的 -
<?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>
从这里引用:如何在 Android 中创建带圆角的 ListView? (我发现它非常有用。)
将以下内容添加到文件中(比如 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"