选择列表视图项后更改底部边框颜色

时间:2016-07-13 11:51:47

标签: android listview colors border

enter image description here

此屏幕截图来自我的短信应用程序。我只想知道,是否可以将蓝色边框颜色更改为橙​​色,以便与我的应用程序主题相匹配?

我尝试过很多东西,但都没有奏效。我知道在样式xml文件中可能会有一些东西要写,但我该怎么办?有人有想法吗?

请指导我。

1 个答案:

答案 0 :(得分:0)

检查此回购:link

这是关于标签及其颜色的xml片段。

此外,如果您需要所选项目的边框颜色,请尝试以下方法:

将此作为商品的边框

\w+=[^,]+
# look for word characters (min one)
# a =
# and anything not a comma

这适用于drawable文件夹中的选择器:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:padding="8dp"
    android:shape="rectangle" >

    <solid android:color="@android:color/transparent" />

    <stroke
        android:width="1px"
        android:color="#yourcolorhere" />

    <corners
        android:bottomLeftRadius="1dp"
        android:bottomRightRadius="1dp"
        android:topLeftRadius="0dp"
        android:topRightRadius="0dp" />

</shape>