/Sky/res/layout/info.xml

http://android-sky.googlecode.com/ · XML · 83 lines · 55 code · 14 blank · 14 comment · 0 complexity · 33ea7b4858d099302e50241817326b75 MD5 · raw file

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- Copyright (C) 2009 Jeff Sharkey, http://jsharkey.org/
  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. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  14. android:layout_width="fill_parent"
  15. android:layout_height="fill_parent"
  16. android:orientation="vertical">
  17. <ScrollView
  18. android:layout_width="fill_parent"
  19. android:layout_height="fill_parent"
  20. android:layout_weight="1">
  21. <LinearLayout
  22. android:layout_width="fill_parent"
  23. android:layout_height="fill_parent"
  24. android:orientation="vertical">
  25. <TextView
  26. android:layout_width="fill_parent"
  27. android:layout_height="wrap_content"
  28. android:padding="20dip"
  29. android:textSize="16sp"
  30. android:text="@string/info_inserting" />
  31. <TextView
  32. android:layout_width="fill_parent"
  33. android:layout_height="wrap_content"
  34. android:text="@string/info_credits_title"
  35. style="?android:attr/listSeparatorTextViewStyle" />
  36. <TextView
  37. android:id="@+id/info_credits"
  38. android:layout_width="fill_parent"
  39. android:layout_height="wrap_content"
  40. android:padding="20dip"
  41. android:textSize="16sp"
  42. android:text="@string/info_credits"
  43. android:autoLink="web" />
  44. </LinearLayout>
  45. </ScrollView>
  46. <LinearLayout
  47. android:layout_width="fill_parent"
  48. android:layout_height="wrap_content"
  49. android:orientation="horizontal"
  50. style="@android:style/ButtonBar">
  51. <View
  52. android:layout_width="0dip"
  53. android:layout_height="0dip"
  54. android:layout_weight="0.25" />
  55. <Button
  56. android:id="@+id/info_done"
  57. android:layout_width="0dip"
  58. android:layout_height="wrap_content"
  59. android:layout_weight="0.5"
  60. android:text="@string/info_done" />
  61. <View
  62. android:layout_width="0dip"
  63. android:layout_height="0dip"
  64. android:layout_weight="0.25" />
  65. </LinearLayout>
  66. </LinearLayout>