在cardview中更改背景和textcolor

时间:2017-07-25 14:04:32

标签: android android-layout

我很难用cardview中的触摸背景颜色(悬停效果)更改文字颜色。我更改了背景颜色,但没有更改文字颜色。

我也试过使用选择器,但我没有成功。

    <?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_activated="true" android:drawable="@android:color/white" />
    <item android:drawable="@android:color/black"/>
</selector>

它会更改文本及其背景的颜色

enter image description here

我的布局

enter image description here

按下我想用背景改变颜色文本

enter image description here

这是我的LayoutCode

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:card_view="http://schemas.android.com/apk/res-auto"
    android:id="@+id/main"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#f1f1f3"
    android:orientation="vertical">

    <android.support.v7.widget.CardView
        android:id="@+id/card_view"
        android:layout_width="fill_parent"
        android:layout_height="120dp"
        android:layout_gravity="center"
        android:layout_marginLeft="15dp"
        android:layout_marginRight="15dp"
        android:layout_marginTop="15dp"
        card_view:cardCornerRadius="0dp"
        card_view:contentPadding="0dp">

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@drawable/listhover">

            <ImageView
                android:id="@+id/thumbnail"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:layout_alignParentLeft="true"
                android:scaleType="fitXY"
                android:src="@drawable/cardviewimage_cio" />

            <TextView
                android:id="@+id/textView"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentTop="true"
                android:layout_marginLeft="12dp"
                android:layout_marginTop="10dp"
                android:layout_toEndOf="@+id/thumbnail"
                android:textStyle="bold" />

            <TextView
                android:id="@+id/textView2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignStart="@+id/textView"
                android:layout_below="@+id/textView"
                android:layout_marginTop="5dp"
                android:textColor="#000" />
        </RelativeLayout>

    </android.support.v7.widget.CardView>

</LinearLayout>

1 个答案:

答案 0 :(得分:0)

更新:在触控侦听器上使用。例如:

cardView.setOnTouchListener(new View.OnTouchListener() {
        @Override
        public boolean onTouch(View v, MotionEvent event) {
            if (event.getAction() == MotionEvent.ACTION_DOWN) {
                textView.setTextColor(Color.RED);
                return true;
            } else {
                textView.setTextColor(Color.BLUE);
            }

            return false;
        }
    });

使用选择器作为CardView的背景。

bg_selector.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_activated="true" android:drawable="@android:color/white" />
    <item android:drawable="@android:color/black"/>
</selector>

像这样添加:

    android:background="@drawable/bg_selector"