Gruppe 1
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.

popup_window.xml 986B

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:layout_width="wrap_content"
  5. android:layout_height="wrap_content"
  6. android:paddingLeft="10dp"
  7. android:paddingRight="10dp"
  8. android:gravity="center"
  9. android:background="#010C49">
  10. <TextView
  11. android:id="@+id/titleText"
  12. android:layout_gravity="center"
  13. android:layout_width="wrap_content"
  14. android:layout_height="wrap_content"
  15. android:textSize="20sp"
  16. android:textStyle="italic"
  17. android:textColor="@color/white"
  18. android:padding="10dp"/>
  19. <Button
  20. android:id="@+id/RechteAnfordern"
  21. android:layout_width="wrap_content"
  22. android:layout_height="wrap_content"
  23. android:layout_weight="1"
  24. android:backgroundTint="@color/purple_500"
  25. android:text="Rechte Anfordern" />
  26. </LinearLayout>