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.

57 lines
2.2 KiB

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/app_background"
android:onClick="onLayoutClick">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@drawable/red_card"
android:layout_marginStart="30dp"
android:layout_marginTop="30dp"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@drawable/green_card"
android:layout_marginStart="50dp"
android:layout_marginTop="50dp"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@drawable/blue_card"
android:layout_marginStart="70dp"
android:layout_marginTop="70dp"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@drawable/red_card"
android:layout_gravity="end"
android:layout_marginEnd="30dp"
android:layout_marginTop="30dp"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@drawable/green_card"
android:layout_gravity="end"
android:layout_marginEnd="50dp"
android:layout_marginTop="50dp"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@drawable/blue_card"
android:layout_gravity="end"
android:layout_marginEnd="70dp"
android:layout_marginTop="70dp"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/layout_uebersicht"
android:layout_marginLeft="30dp"
android:layout_marginBottom="15dp"
android:padding="10dp"
android:background="#aa000000"
android:textColor="#ffffff"
android:layout_gravity="bottom|left"/>
</FrameLayout>