quest_activity.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent" >
  5. <RelativeLayout
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent"
  8. android:paddingBottom="@dimen/activity_vertical_margin"
  9. android:paddingLeft="@dimen/activity_horizontal_margin"
  10. android:paddingRight="@dimen/activity_horizontal_margin"
  11. android:paddingTop="@dimen/activity_vertical_margin"
  12. tools:context=".MainActivity" >
  13. <TextView
  14. android:id="@+id/main_title"
  15. android:layout_width="fill_parent"
  16. android:layout_height="wrap_content"
  17. android:gravity="center_horizontal"
  18. android:text="@string/qa_title"
  19. android:textSize="@dimen/main_title_size" />
  20. <TextView
  21. android:id="@+id/error_code_title"
  22. android:layout_width="fill_parent"
  23. android:layout_height="wrap_content"
  24. android:layout_below="@id/main_title"
  25. android:text="@string/error_code_desc"
  26. android:textSize="@dimen/main_title_size" />
  27. <TextView
  28. android:id="@+id/error_code_content"
  29. android:layout_width="fill_parent"
  30. android:layout_height="wrap_content"
  31. android:layout_below="@id/error_code_title"
  32. android:text="@string/error_code_detail"
  33. android:textSize="@dimen/main_title_size" />
  34. <TextView
  35. android:id="@+id/call_back_title"
  36. android:layout_width="fill_parent"
  37. android:layout_height="wrap_content"
  38. android:layout_below="@id/error_code_content"
  39. android:text="@string/qa_callback"
  40. android:textSize="@dimen/main_title_size" />
  41. <TextView
  42. android:id="@+id/call_back_content"
  43. android:layout_width="fill_parent"
  44. android:layout_height="wrap_content"
  45. android:layout_below="@id/call_back_title"
  46. android:text="@string/qa_callback_mail"
  47. android:textSize="@dimen/main_title_size" />
  48. </RelativeLayout>
  49. </ScrollView>