Welcome to mirror list, hosted at ThFree Co, Russian Federation.

widget_note_list.xml « layout « res « main « src « app - github.com/stefan-niedermann/nextcloud-notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a3e7e163051e599eccd29094c6342ff28cc959a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/widget_background"
    android:orientation="vertical"
    android:paddingStart="@dimen/widget_inner_padding_horizontal"
    android:paddingTop="@dimen/widget_inner_padding_vertical"
    android:paddingEnd="@dimen/widget_inner_padding_horizontal"
    android:paddingBottom="@dimen/widget_inner_padding_vertical">

    <ListView
        android:id="@+id/note_list_widget_lv"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:divider="@android:color/transparent"
        android:dividerHeight="@null"
        android:textAppearance="?android:attr/textAppearanceMedium"
        tools:listitem="@layout/widget_entry" />

    <TextView
        android:id="@+id/widget_note_list_placeholder_tv"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center"
        android:text="@string/widget_note_list_placeholder"
        android:textColor="@color/fg_default_high"
        tools:visibility="gone" />

</LinearLayout>