json.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. This file is part of Zandy.
  4. Zandy is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU Affero General Public License as published by
  6. the Free Software Foundation, either version 3 of the License, or
  7. (at your option) any later version.
  8. Zandy is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU Affero General Public License for more details.
  12. You should have received a copy of the GNU Affero General Public License
  13. along with Zandy. If not, see <http://www.gnu.org/licenses/>.
  14. -->
  15. <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
  16. android:layout_width="fill_parent"
  17. android:layout_height="fill_parent"
  18. android:stretchColumns="1">
  19. <TableRow>
  20. <TextView
  21. android:layout_column="1"
  22. android:text="Save..."
  23. android:padding="3dip" />
  24. </TableRow>
  25. <View
  26. android:layout_height="2dip"
  27. android:background="#FF909090" />
  28. <TableRow>
  29. <TextView
  30. android:layout_column="1"
  31. android:text="Authorize using OAuth"
  32. android:padding="3dip" />
  33. </TableRow>
  34. <TableRow>
  35. <TextView
  36. android:layout_column="1"
  37. android:text="Sync"
  38. android:padding="3dip" />
  39. </TableRow>
  40. <TableRow>
  41. <TextView
  42. android:layout_column="1"
  43. android:text="Quit"
  44. android:padding="3dip" />
  45. </TableRow>
  46. </TableLayout>