单击RelativeLayout时的视觉反馈

时间:2016-12-15 23:40:37

标签: android xml

当用户点击我的框架时,我需要添加视觉反馈。我从类似的问题中得到了一些建议,但是我不能让它工作,我不知道它为什么不起作用。这是我到目前为止所做的:

rectangle_visual_feedback.xml:

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

rectangle_visual_feedback_selector.xml:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<solid android:color="#40808080"/>
<padding android:bottom="10dp" android:right="10dp" android:top="10dp" android:left="10dp"></padding>
</shape>

fragment.xml:

    <LinearLayout
        android:id="@+id/linearlayout_holder"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:background="?android:attr/selectableItemBackground"
        android:clickable="true"
        android:paddingBottom="3dp"
        android:paddingLeft="10dp"
        android:paddingRight="3dp"
        android:paddingTop="10dp">

        <RelativeLayout
            android:id="@+id/relativelayout_mainwrap"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:padding="8dp"
            android:background="@drawable/rectangle_visual_feedback_selector"
            >

            <LinearLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentLeft="true"
                android:layout_centerVertical="true"
                android:gravity="center"
                android:orientation="horizontal">

                <ImageView
                    android:id="@+id/imageview_image"
                    android:layout_width="22dp"
                    android:layout_height="22dp"
                    android:src="@drawable/thehotel_b" />

                <com.hotelstayapp.android.custom.CustomTextView
                    android:id="@+id/customtextview_text"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginLeft="5dp"
                    android:gravity="center_vertical"
                    android:textAllCaps="true"
                    android:textSize="16sp" />
            </LinearLayout>

        </RelativeLayout>
    </LinearLayout>

以下是我用来调用RelativeLayout的片段内的代码:

RelativeLayout relativelayout_mainwrap = (RelativeLayout) view.findViewById(R.id.relativelayout_mainwrap);
RelativeLayout relativelayout_mainwrap.setBackgroundColor(Color.parseColor("#" + Theme.BackColorOpacity + Theme.BackColor));

为什么这不起作用?

1 个答案:

答案 0 :(得分:0)

对于视觉反馈,您可以创建以下可绘制的

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:color="@color/colorAccent" android:state_pressed="true" />
    <item android:color="@color/navigation_icon_default" />
</selector>

并将此drawable设置为相对布局的背景。