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

12345678910111213141516171819202122232425262728293031323334353637
  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="fill_parent"
  9. android:layout_height="fill_parent"
  10. android:layout_alignParentTop="true">
  11. </FrameLayout>
  12. <TextView
  13. android:id="@+id/capture_log"
  14. android:layout_width="match_parent"
  15. android:layout_height="200dp"
  16. android:layout_above="@id/capture"
  17. android:background="@drawable/woodentable"
  18. android:text="@string/app_name"
  19. android:textColor="@android:color/black"
  20. android:textSize="18sp" />
  21. <Button
  22. android:id="@+id/capture"
  23. style="?android:borderlessButtonStyle"
  24. android:layout_width="match_parent"
  25. android:layout_height="wrap_content"
  26. android:layout_alignParentBottom="true"
  27. android:layout_centerHorizontal="true"
  28. android:background="@android:color/holo_green_dark"
  29. android:fontFamily="@font/germania_one"
  30. android:text="@string/capture"
  31. android:textColor="@android:color/black"
  32. android:textSize="24sp" />
  33. </RelativeLayout>