Android App zur Berechnung einer HDR Belichtungsreihe.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

about_dialog.xml 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:layout_width="fill_parent"
  5. android:padding="10dp"
  6. android:layout_height="fill_parent"
  7. android:background="@drawable/bg_about"
  8. android:orientation="vertical"
  9. android:id="@+id/layout_AboutRoot">
  10. <LinearLayout
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. android:orientation="horizontal"
  14. android:id="@+id/layout_aboutVersion">
  15. <ImageView
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content"
  18. android:layout_marginRight="20dip"
  19. android:id="@+id/about_imageAppIcon" />
  20. <LinearLayout
  21. android:layout_width="wrap_content"
  22. android:layout_height="wrap_content"
  23. android:id="@+id/layout_aboutVersionText"
  24. android:orientation="vertical">
  25. <TextView
  26. android:layout_width="wrap_content"
  27. android:layout_height="wrap_content"
  28. android:textColor="#FF000000"
  29. android:text="iii"
  30. android:id="@+id/about_TextDescription" />
  31. <TextView
  32. android:layout_width="wrap_content"
  33. android:layout_height="wrap_content"
  34. android:textColor="#FF000000"
  35. android:text="iii"
  36. android:id="@+id/about_TextVersion"
  37. android:textStyle="bold" />
  38. </LinearLayout>
  39. </LinearLayout>
  40. <TextView
  41. android:text="@+id/TextView01"
  42. android:layout_width="wrap_content"
  43. android:layout_height="wrap_content"
  44. android:id="@+id/about_TextAutor"
  45. android:textColor="@color/black"
  46. android:paddingBottom="20dip"
  47. android:paddingTop="20dip"></TextView>
  48. <Button
  49. android:layout_width="wrap_content"
  50. android:layout_height="wrap_content"
  51. android:background="@drawable/btn_fs"
  52. android:id="@+id/btn_AboutClose"
  53. android:textColor="@color/white"
  54. android:layout_gravity="center_horizontal"
  55. android:text="@string/BtnClose">
  56. </Button>
  57. </LinearLayout>