Android App zur Berechnung einer HDR Belichtungsreihe.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

userguide_dialog.xml 2.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:background="@drawable/bg_about"
  5. android:padding="10dp"
  6. android:layout_height="fill_parent"
  7. android:layout_width="fill_parent"
  8. android:orientation="vertical">
  9. <LinearLayout
  10. android:layout_width="wrap_content"
  11. android:layout_height="wrap_content"
  12. android:orientation="horizontal"
  13. android:id="@+id/layout_ugVersion">
  14. <ImageView
  15. android:layout_width="wrap_content"
  16. android:layout_height="wrap_content"
  17. android:layout_marginRight="20dip"
  18. android:id="@+id/ug_imageAppIcon"
  19. android:layout_gravity="center_vertical" />
  20. <TextView
  21. android:layout_width="wrap_content"
  22. android:layout_height="wrap_content"
  23. android:textColor="#FF000000"
  24. android:text="iii"
  25. android:id="@+id/ug_TextVersion"
  26. android:textStyle="bold"
  27. android:layout_gravity="center_vertical"
  28. android:gravity="center_vertical" />
  29. </LinearLayout>
  30. <ScrollView
  31. android:id="@+id/ug_ScrollView"
  32. android:layout_width="wrap_content"
  33. android:addStatesFromChildren="true"
  34. android:layout_height="250dp">
  35. <LinearLayout android:id="@+id/linearLayout1" android:orientation="vertical" android:layout_width="wrap_content" android:layout_height="wrap_content">
  36. <TextView android:layout_height="wrap_content" android:layout_marginBottom="5dp" android:layout_marginTop="5dp" android:textColor="@color/black" android:text="@string/header_GeneralPurpose" android:textStyle="bold" android:id="@+id/ug_hdr_GenPourpose" android:layout_width="wrap_content"></TextView>
  37. <TextView android:layout_height="wrap_content" android:textSize="12dp" android:paddingRight="3dp" android:textColor="@color/black" android:text="@string/text_GeneralPurpose" android:id="@+id/ug_txt_GenPourpose" android:layout_width="wrap_content"></TextView>
  38. <TextView android:layout_height="wrap_content" android:layout_marginBottom="5dp" android:layout_marginTop="5dp" android:textColor="@color/black" android:text="@string/header_HowTo" android:textStyle="bold" android:id="@+id/ug_hdr_HowTo" android:layout_width="wrap_content"></TextView>
  39. <TextView android:layout_height="wrap_content" android:textSize="12dp" android:lineSpacingExtra="1dp" android:textColor="@color/black" android:text="@string/text_HowTo" android:id="@+id/ug_txt_HowTo" android:layout_width="wrap_content"></TextView>
  40. </LinearLayout>
  41. </ScrollView>
  42. <Button
  43. android:layout_width="wrap_content"
  44. android:layout_height="wrap_content"
  45. android:background="@drawable/btn_fs"
  46. android:id="@+id/btn_ugClose"
  47. android:textColor="@color/white"
  48. android:layout_gravity="center_horizontal"
  49. android:layout_marginTop="20dp" android:text="@string/BtnClose">
  50. </Button>
  51. </LinearLayout>