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

widget_upcoming.xml « layout « res « main « src « app - github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f95d87eb72cf9c9aec30215e2b4a9b5f7750e4be (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
32
33
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/widget_outer_background"
    android:orientation="vertical">

    <ListView
        android:id="@+id/upcoming_widget_lv"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:divider="@android:color/transparent"
        android:dividerHeight="@dimen/spacer_1x"
        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"
        tools:listitem="@layout/widget_stack_entry" />

    <ImageView
        android:id="@+id/widget_upcoming_placeholder_iv"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:contentDescription="@string/widget_placeholder_icon"
        android:gravity="center"
        android:text="@string/app_name_short"
        android:textColor="?attr/colorOnSurfaceVariant"
        app:srcCompat="@drawable/ic_local_movies_24dp"
        tools:visibility="gone" />

</LinearLayout>