47 lines
1.7 KiB
XML
47 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/widget_root"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@drawable/app_widget_background">
|
|
|
|
<ImageView
|
|
android:id="@+id/widget_watermark"
|
|
android:layout_width="160dp"
|
|
android:layout_height="160dp"
|
|
android:layout_gravity="bottom|end"
|
|
android:scaleType="fitCenter"
|
|
android:importantForAccessibility="no"
|
|
android:contentDescription="@null"
|
|
android:alpha="0.025"
|
|
android:src="@drawable/marianum_m_watermark" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:gravity="center"
|
|
android:padding="16dp">
|
|
|
|
<TextView
|
|
android:id="@+id/widget_placeholder_title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="14sp"
|
|
android:textStyle="bold"
|
|
android:textColor="@color/widget_text_primary"
|
|
tools:text="Marianum Vertretungsplan" />
|
|
|
|
<TextView
|
|
android:id="@+id/widget_placeholder_message"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:textSize="12sp"
|
|
android:layout_marginTop="6dp"
|
|
android:textColor="@color/widget_text_secondary"
|
|
tools:text="Bitte einloggen, um den Stundenplan zu laden" />
|
|
</LinearLayout>
|
|
</FrameLayout>
|