list_item_transport.xml 815 B

1234567891011121314151617181920212223242526
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:orientation="vertical"
  6. android:layout_width="match_parent"
  7. android:layout_height="wrap_content"
  8. android:padding="@dimen/margin_small"
  9. android:gravity="center_horizontal">
  10. <ImageView
  11. android:id="@+id/imageView"
  12. android:layout_width="wrap_content"
  13. android:layout_height="wrap_content"
  14. android:padding="@dimen/margin_small"
  15. tools:src="@drawable/transport_tor"/>
  16. <TextView
  17. android:id="@+id/textView"
  18. android:layout_width="wrap_content"
  19. android:layout_height="match_parent"
  20. android:padding="@dimen/margin_small"
  21. android:textColor="@android:color/tertiary_text_light"
  22. tools:text="@string/transport_tor"/>
  23. </LinearLayout>