nextcloud-notes-android/app/src/main/res/layout/widget_single_note.xml
2019-10-04 20:44:20 +02:00

23 lines
906 B
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/widget_background">
<ListView
android:id="@+id/single_note_widget_lv"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="@dimen/widget_single_note_padding" />
<TextView
android:id="@+id/widget_single_note_placeholder_tv"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:text="@string/widget_single_note_placeholder_tv"
android:textColor="@color/fg_default_high_dark_theme"
android:textAlignment="center"
android:padding="@dimen/widget_single_note_padding" />
</RelativeLayout>