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

widget_layout.xml « layout « res « main « src « News-Android-App - github.com/nextcloud/news-android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9435b9a7d4d33f6c5b3bb86fa981b7b7be40d1eb (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
34
35
36
37
38
39
40
41
42
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/widget_background">

    <!--
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/nextcloudBlue" >

        <TextView
            android:id="@+id/tV_widget_header"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1.0"            
            android:padding="10dp"
            android:text="@string/widget_header"
            android:textColor="#FFF"
            android:textSize="17sp" />

    </LinearLayout>

    android:layout_marginTop="44dp"
    -->
    
    <ListView
        android:id="@+id/list_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center"
        android:divider="@null"
        android:dividerHeight="0dp" />

    
    	<!--
    	android:divider="#32d1d1d1"
        android:dividerHeight="1dp"
		 -->
    
</FrameLayout>