Projekt Schafkopfpunktezähler: Erster Prototyp einer App, die dem Benutzer die Notwendigkeit des Punktezählens beim Schafkopfspiel abnimmt.
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.

cardcapture.xml 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent">
  6. <FrameLayout
  7. android:id="@+id/cameraPreview"
  8. android:layout_width="match_parent"
  9. android:layout_height="match_parent">
  10. </FrameLayout>
  11. <RelativeLayout
  12. android:layout_width="match_parent"
  13. android:layout_height="wrap_content"
  14. android:background="@drawable/woodentable"
  15. android:layout_alignParentBottom="true">
  16. <Button
  17. android:id="@+id/capture"
  18. style="?android:borderlessButtonStyle"
  19. android:layout_width="match_parent"
  20. android:layout_height="wrap_content"
  21. android:layout_alignParentBottom="true"
  22. android:layout_centerHorizontal="true"
  23. android:background="@android:color/holo_green_dark"
  24. android:fontFamily="@font/germania_one"
  25. android:text="@string/capture"
  26. android:textColor="@android:color/black"
  27. android:textSize="24sp" />
  28. <TextView
  29. android:id="@+id/capture_log"
  30. android:layout_width="match_parent"
  31. android:layout_height="wrap_content"
  32. android:text="@string/app_name"
  33. android:layout_alignParentBottom="false"
  34. android:layout_below="@+id/capture" />
  35. </RelativeLayout>
  36. </RelativeLayout>