Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:layout_width="match_parent"
  5. android:layout_height="wrap_content"
  6. android:orientation="horizontal"
  7. android:clickable="true"
  8. android:focusable="true"
  9. android:background="?attr/selectableItemBackground" >
  10.  
  11. <ImageView
  12. android:layout_width="60dp"
  13. android:layout_height="60dp"
  14. android:id="@+id/recycler_listrow_icon"
  15. android:layout_marginLeft="0dp"
  16. android:layout_marginRight="0dp"
  17. android:layout_centerVertical="true"
  18. android:layout_alignParentTop="true"
  19. android:layout_alignParentStart="true" />
  20.  
  21. <TextView
  22. android:layout_width="wrap_content"
  23. android:layout_height="wrap_content"
  24. android:text="name"
  25. android:id="@+id/recycler_listrow_text"
  26. android:textSize="25sp"
  27. android:textColor="#010101"
  28. android:layout_marginLeft="10dp"
  29. android:layout_marginRight="10dp"
  30. android:layout_centerVertical="true"
  31. android:layout_toEndOf="@+id/recycler_listrow_icon" />
  32. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement