mirror of
https://github.com/nextcloud/notes-android.git
synced 2024-12-22 10:34:43 +03:00
23 lines
906 B
XML
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>
|