Advertisement
Guest User

Untitled

a guest
Nov 24th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 KB | None | 0 0
  1. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. tools:context="com.simulatedminds.choreapplication.TabProfiles">
  6.  
  7. <!-- TODO: Update blank fragment layout -->
  8.  
  9. <LinearLayout
  10. android:layout_width="match_parent"
  11. android:layout_height="match_parent"
  12. android:orientation="vertical"
  13. tools:ignore="UselessParent">
  14.  
  15. <EditText
  16. android:id="@+id/title"
  17. android:layout_width="match_parent"
  18. android:layout_height="wrap_content"
  19. android:ems="10"
  20. android:gravity="center"
  21. android:inputType="textPersonName"
  22. android:text="@string/rewardsusertally"
  23. android:textStyle="bold"
  24. tools:ignore="LabelFor" />
  25.  
  26. <LinearLayout
  27. android:id="@+id/listOfUsers"
  28. android:layout_width="match_parent"
  29. android:layout_height="0dp"
  30. android:layout_weight="1"
  31. android:orientation="horizontal"
  32. android:baselineAligned="false">
  33.  
  34. <LinearLayout
  35. android:id="@+id/userAndPoints"
  36. android:layout_width="0dp"
  37. android:layout_height="wrap_content"
  38. android:layout_weight="1"
  39. android:orientation="horizontal"
  40. tools:ignore="NestedWeights">
  41.  
  42. <TextView
  43. android:id="@+id/userName"
  44. android:layout_width="wrap_content"
  45. android:layout_height="match_parent"
  46. android:layout_weight="100000"
  47. android:text="@string/name"
  48. android:textSize="25sp"
  49. tools:ignore="NestedWeights" />
  50.  
  51. <EditText
  52. android:id="@+id/userPoints"
  53. android:layout_width="wrap_content"
  54. android:layout_height="match_parent"
  55. android:layout_weight="1"
  56. android:ems="10"
  57. android:inputType="number"
  58. tools:ignore="LabelFor" />
  59. </LinearLayout>
  60.  
  61. </LinearLayout>
  62.  
  63. <Button
  64. android:id="@+id/resetButton"
  65. android:layout_width="match_parent"
  66. android:layout_height="wrap_content"
  67. android:text="@string/reset_points" />
  68.  
  69. </LinearLayout>
  70.  
  71. </FrameLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement