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.2KB

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