creator_dialog.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <!--
  2. This file is part of Zandy.
  3. Zandy is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU Affero General Public License as published by
  5. the Free Software Foundation, either version 3 of the License, or
  6. (at your option) any later version.
  7. Zandy is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU Affero General Public License for more details.
  11. You should have received a copy of the GNU Affero General Public License
  12. along with Zandy. If not, see <http://www.gnu.org/licenses/>.
  13. -->
  14. <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
  15. android:id="@+id/layout_root"
  16. android:orientation="vertical"
  17. android:layout_width="fill_parent"
  18. android:layout_height="fill_parent"
  19. android:padding="10dp"
  20. >
  21. <TableRow android:id="@+id/tableRow1" android:layout_width="wrap_content" android:layout_height="wrap_content">
  22. <Spinner android:id="@+id/creator_type" android:layout_height="wrap_content" android:layout_width="wrap_content" android:layout_weight="0.10"></Spinner>
  23. </TableRow>
  24. <TableRow android:id="@+id/tableRow2" android:layout_width="wrap_content" android:layout_height="wrap_content">
  25. <EditText android:id="@+id/creator_firstName"
  26. android:layout_width="wrap_content"
  27. android:layout_height="fill_parent"
  28. />
  29. <EditText android:id="@+id/creator_lastName"
  30. android:layout_width="wrap_content"
  31. android:layout_height="fill_parent"
  32. />
  33. </TableRow>
  34. <TableRow android:id="@+id/tableRow3" android:layout_width="wrap_content" android:layout_height="wrap_content">
  35. <CheckBox android:id="@+id/creator_mode" android:layout_width="wrap_content" android:layout_weight="0.10" android:layout_height="wrap_content" android:text="Single Field"></CheckBox>
  36. <EditText android:id="@+id/creator_name"
  37. android:layout_width="wrap_content"
  38. android:layout_height="fill_parent"
  39. />
  40. </TableRow>
  41. </TableLayout>