Guest User

Untitled

a guest
Mar 19th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <selector xmlns:android="http://schemas.android.com/apk/res/android">
  3. <item
  4. android:state_selected="true"
  5. android:drawable="@color/colorPrimary"/>
  6. <item
  7. android:state_pressed="true"
  8. android:drawable="@color/colorPrimary"/>
  9. </selector>
  10.  
  11. <?xml version="1.0" encoding="utf-8"?>
  12. <RelativeLayout android:id="@+id/feedback_popup" android:layout_height="match_parent" android:layout_width="match_parent"
  13. xmlns:android="http://schemas.android.com/apk/res/android"
  14. android:background="@color/background_normal">
  15.  
  16. <LinearLayout
  17. android:layout_width="match_parent"
  18. android:layout_height="match_parent">
  19. <ListView xmlns:android="http://schemas.android.com/apk/res/android"
  20. android:layout_width="match_parent" android:layout_height="match_parent"
  21. android:drawSelectorOnTop="true"
  22. android:background="@drawable/bg_key"
  23. android:id="@android:id/list">
  24. </ListView>
  25. </LinearLayout>
  26.  
  27. <Button
  28. android:id="@+id/button"
  29. android:layout_width="wrap_content"
  30. android:layout_height="wrap_content"
  31. android:layout_alignParentRight="true"
  32. android:layout_alignParentBottom="true"
  33. android:text="Ok"/>
  34.  
  35. <Button
  36. android:id="@+id/back_button"
  37. android:layout_width="wrap_content"
  38. android:layout_height="wrap_content"
  39. android:layout_alignParentLeft="true"
  40. android:layout_alignParentBottom="true"
  41. android:visibility="invisible"
  42. android:text="@string/action_back"/>
  43.  
  44. </RelativeLayout>
Add Comment
Please, Sign In to add comment