You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

route_recycler_view_item.xml 776B

12345678910111213141516171819202122
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="horizontal"
  4. android:layout_width="match_parent"
  5. android:layout_height="wrap_content">
  6. <ImageView
  7. android:layout_width="50dp"
  8. android:layout_height="50dp"
  9. android:src="@drawable/ic_add_black_24dp"
  10. android:id="@+id/imageView"
  11. android:paddingBottom="2.5dp"
  12. android:paddingRight="5dp"
  13. android:paddingTop="2.5dp"/>
  14. <TextView
  15. android:text="TextView"
  16. android:layout_width="match_parent"
  17. android:layout_height="match_parent"
  18. android:id="@+id/textView"
  19. android:gravity="center_vertical"/>
  20. </LinearLayout>