/WebVox/res/layout/page_info.xml

http://eyes-free.googlecode.com/ · XML · 74 lines · 49 code · 9 blank · 16 comment · 0 complexity · b69418775abcfd6a2143bb195a94a0f8 MD5 · raw file

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- Copyright (C) 2008 The Android Open Source Project
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. -->
  13. <ScrollView
  14. xmlns:android="http://schemas.android.com/apk/res/android"
  15. android:layout_width="fill_parent"
  16. android:layout_height="wrap_content"
  17. android:orientation="vertical" >
  18. <LinearLayout
  19. android:layout_width="fill_parent"
  20. android:layout_height="wrap_content"
  21. android:orientation="vertical" >
  22. <!-- Title: -->
  23. <TextView
  24. android:id="@+id/title"
  25. android:layout_height="wrap_content"
  26. android:layout_width="wrap_content"
  27. android:textStyle="bold"
  28. android:textSize="14sp"
  29. android:textColor="@color/white"
  30. android:layout_marginLeft="20dip"
  31. android:layout_marginRight="20dip"
  32. android:layout_marginTop="12dip"
  33. android:layout_marginBottom="12dip" />
  34. <!-- Address: -->
  35. <TableLayout
  36. android:layout_width="fill_parent"
  37. android:layout_height="wrap_content"
  38. android:orientation="vertical">
  39. <TextView
  40. android:id="@+id/address_header"
  41. android:layout_height="wrap_content"
  42. android:layout_width="wrap_content"
  43. android:text="@string/page_info_address"
  44. android:textSize="14sp"
  45. android:textColor="@color/white"
  46. android:gravity="left"
  47. android:layout_marginLeft="20dip"
  48. android:layout_marginRight="20dip"
  49. android:layout_marginBottom="10dip" />
  50. <TextView
  51. android:id="@+id/address"
  52. android:layout_height="wrap_content"
  53. android:layout_width="wrap_content"
  54. android:textSize="14sp"
  55. android:textColor="@color/white"
  56. android:gravity="left"
  57. android:layout_marginLeft="20dip"
  58. android:layout_marginRight="20dip"
  59. android:layout_marginBottom="12dip" />
  60. </TableLayout>
  61. </LinearLayout>
  62. </ScrollView>