Created
October 10, 2015 07:34
-
-
Save brucetoo/925f8b7cbc60af121886 to your computer and use it in GitHub Desktop.
RecyclerView Item背景的点击效果
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:app="http://schemas.android.com/apk/res-auto" | |
xmlns:tools="http://schemas.android.com/tools" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:background="@drawable/selector_message_bg" //selector 背景 | |
android:orientation="vertical" | |
android:clickable="true" //如果点击没有效果,需要加上 clickable=true | |
android:paddingLeft="10dp" | |
android:paddingTop="10dp"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment