/CVox/res/layout/act_browse.xml

http://eyes-free.googlecode.com/ · XML · 81 lines · 17 code · 4 blank · 60 comment · 0 complexity · c3b559cf0c03951cb2efaf89f7e0a785 MD5 · raw file

  1. <!--
  2. Copyright (C) 2008 Jeffrey Sharkey, http://jsharkey.org/
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU 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. This program 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 General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. -->
  14. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  15. android:layout_width="fill_parent"
  16. android:layout_height="fill_parent">
  17. <!--
  18. <LinearLayout
  19. android:id="@+id/browse_install"
  20. android:layout_width="fill_parent"
  21. android:layout_height="wrap_content"
  22. android:visibility="gone"
  23. android:orientation="vertical"
  24. android:padding="10dip"
  25. android:background="#fccf"
  26. >
  27. <TextView
  28. android:layout_width="fill_parent"
  29. android:layout_height="wrap_content"
  30. android:text="@string/install_title"
  31. android:textAppearance="?android:attr/textAppearanceMedium"
  32. android:textColor="#f000"
  33. android:paddingBottom="5dip"
  34. />
  35. <TextView
  36. android:layout_width="fill_parent"
  37. android:layout_height="wrap_content"
  38. android:text="@string/install_warn"
  39. android:textStyle="bold"
  40. android:paddingBottom="5dip"
  41. android:textAppearance="?android:attr/textAppearanceSmall"
  42. android:textColor="#f000"
  43. />
  44. <Button
  45. android:id="@android:id/button1"
  46. android:layout_width="wrap_content"
  47. android:layout_height="wrap_content"
  48. android:layout_gravity="center_horizontal"
  49. android:text="@string/install_action"
  50. android:textColor="#f000"
  51. android:paddingLeft="10dip"
  52. android:paddingRight="10dip"
  53. />
  54. </LinearLayout>
  55. -->
  56. <WebView
  57. android:id="@+id/browse_webview"
  58. android:layout_width="fill_parent"
  59. android:layout_height="fill_parent"
  60. android:layout_weight="1"
  61. />
  62. <FrameLayout
  63. android:id="@+id/browse_zoom"
  64. android:layout_width="wrap_content"
  65. android:layout_height="wrap_content"
  66. android:layout_alignParentBottom="true"
  67. android:layout_centerHorizontal="true"
  68. />
  69. </RelativeLayout>