Advertisement
Guest User

Untitled

a guest
Jul 25th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. <PreferenceScreen xmlns:tools="http://schemas.android.com/tools"
  2. xmlns:android="http://schemas.android.com/apk/res/android">
  3. <PreferenceCategory
  4. android:title="menu"
  5. android:key="menu">
  6.  
  7. <PreferenceScreen
  8. android:title="pref1"
  9. android:key="pref1" />
  10.  
  11. <PreferenceScreen
  12. android:title="pref2"
  13. android:key="pref2" />
  14. </PreferenceCategory>
  15. </PreferenceScreen>
  16.  
  17. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  18. android:layout_width="match_parent"
  19. android:layout_height="match_parent"
  20. android:orientation="horizontal">
  21.  
  22. <TextView
  23. android:textColor="#FF0000"
  24. android:layout_width="match_parent"
  25. android:layout_height="match_parent"
  26. android:text="pref2"
  27. android:layout_alignParentTop="true"
  28. android:layout_alignParentEnd="true"/>
  29. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement