Newer
Older
CosmosClient / app / src / main / res / layout / activity_add_member.xml
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. tools:context=".views.AddMemberActivity">
  8.  
  9. <TextView
  10. android:id="@+id/groupName"
  11. android:layout_width="match_parent"
  12. android:layout_height="75dp"
  13. android:background="#e6eae3"
  14. android:gravity="center"
  15. android:text=""
  16. android:textSize="24sp"
  17. app:layout_constraintTop_toTopOf="parent"
  18. tools:layout_editor_absoluteX="0dp" />
  19.  
  20. <LinearLayout
  21. android:layout_width="0dp"
  22. android:layout_height="0dp"
  23. android:layout_marginTop="8dp"
  24. android:layout_marginBottom="8dp"
  25. android:orientation="vertical"
  26. app:layout_constraintBottom_toBottomOf="parent"
  27. app:layout_constraintEnd_toEndOf="parent"
  28. app:layout_constraintStart_toStartOf="parent"
  29. app:layout_constraintTop_toBottomOf="@+id/groupName">
  30.  
  31. <ListView
  32. android:id="@+id/list_view"
  33. android:layout_width="match_parent"
  34. android:layout_height="match_parent" />
  35. </LinearLayout>
  36. <!--<Button-->
  37. <!--android:id="@+id/addQR"-->
  38. <!--android:layout_width="match_parent"-->
  39. <!--android:layout_height="144dp"-->
  40. <!--android:background="@drawable/white"-->
  41. <!--android:gravity="center"-->
  42. <!--android:text="QRコードで追加"-->
  43. <!--android:textSize="24sp"-->
  44. <!--android:drawableLeft="@drawable/camera_image"-->
  45. <!--app:layout_constraintTop_toBottomOf="@+id/groupName"-->
  46. <!--tools:layout_editor_absoluteX="0dp" />-->
  47.  
  48. <!--<Button-->
  49. <!--android:id="@+id/addID"-->
  50. <!--android:layout_width="match_parent"-->
  51. <!--android:layout_height="144dp"-->
  52. <!--android:background="@drawable/white"-->
  53. <!--android:gravity="center"-->
  54. <!--android:text="IDで追加"-->
  55. <!--android:textSize="24sp"-->
  56. <!--android:drawableLeft="@drawable/search_image"-->
  57. <!--app:layout_constraintTop_toBottomOf="@+id/addQR"-->
  58. <!--tools:layout_editor_absoluteX="0dp" />-->
  59.  
  60. <!--<Button-->
  61. <!--android:id="@+id/addMail"-->
  62. <!--android:layout_width="match_parent"-->
  63. <!--android:layout_height="144dp"-->
  64. <!--android:background="@drawable/white"-->
  65. <!--android:drawableLeft="@drawable/mail_image"-->
  66. <!--android:gravity="center"-->
  67. <!--android:text="メールで招待"-->
  68. <!--android:textSize="24sp"-->
  69. <!--app:layout_constraintTop_toBottomOf="@+id/addID"-->
  70. <!--tools:layout_editor_absoluteX="0dp" />-->
  71.  
  72. <!--<ListView-->
  73. <!--android:id="@android:id/list"-->
  74. <!--android:layout_width="match_parent"-->
  75. <!--android:layout_height="wrap_content" />-->
  76.  
  77. </android.support.constraint.ConstraintLayout>
  78.  
  79. <!--<LinearLayout-->
  80. <!--xmlns:android="http://schemas.android.com/apk/res/android"-->
  81. <!--xmlns:tools="http://schemas.android.com/tools"-->
  82. <!--android:padding="5dp"-->
  83. <!--android:orientation="vertical"-->
  84. <!--android:background=""-->
  85. <!--android:layout_width="match_parent"-->
  86. <!--android:layout_height="match_parent"-->
  87. <!--tools:context=".views.AddMemberActivity">-->
  88.  
  89. <!--<ListView-->
  90. <!--android:id="@android:id/list"-->
  91. <!--android:layout_width="match_parent"-->
  92. <!--android:layout_height="wrap_content" />-->
  93.  
  94. <!--</LinearLayout>-->