Advertisement
Guest User

Untitled

a guest
Aug 24th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent">
  6.  
  7. <TextView
  8. android:id="@+id/left_tv"
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:layout_alignParentLeft="true"
  12. android:layout_alignParentStart="true"
  13. android:text="TextView" />
  14.  
  15. <ImageView
  16. android:id="@+id/imageView6"
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. android:layout_toLeftOf="@+id/right_tv"
  20. android:layout_toRightOf="@+id/left_tv"
  21. app:srcCompat="@drawable/arrow" />
  22.  
  23. <TextView
  24. android:id="@+id/right_tv"
  25. android:layout_width="wrap_content"
  26. android:layout_height="wrap_content"
  27. android:layout_alignParentRight="true"
  28. android:text="TextView" />
  29. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement