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

widget_item.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: dd3153b0f3c21821d3b01e9e1d4847e6a7e8a362 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/ll_root_view_widget_row"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:paddingRight="@dimen/listview_row_margin_right"
    android:orientation="horizontal"
    android:background="@drawable/row_divider_line"
    android:baselineAligned="false" >

    
    <LinearLayout
        android:id="@+id/color_line_feed"
	    android:layout_width="4dip"
	    android:layout_height="match_parent"
	    android:orientation="horizontal" />
    
    <LinearLayout
        android:layout_width="0dip"
        android:layout_weight="1"
        android:layout_height="wrap_content"
        android:layout_marginLeft="5dip"
        android:layout_marginTop="5dp"
    	android:layout_marginBottom="5dp"
        android:orientation="vertical" >
    
         <TextView
	        android:id="@+id/feed_title"
	        android:layout_width="wrap_content"
	        android:layout_height="wrap_content"
	        android:gravity="center_vertical"
	        android:singleLine="true"
	        android:textIsSelectable="false"
	        android:text="dsjkafd"
	        android:ellipsize="end"
	        android:textStyle="bold"
	        android:textSize="18sp" />
        
	    <LinearLayout
	        android:layout_width="match_parent"
	        android:layout_height="match_parent"
	        android:orientation="horizontal"
            android:layout_marginTop="3dp" >
	
	        <TextView
	            android:id="@+id/feed_author_source"
	            android:layout_width="0dip"
	            android:layout_height="wrap_content"
	            android:layout_weight="1"
	            android:gravity="center_vertical"
	            android:singleLine="true"
	            android:textIsSelectable="false"
	            android:text="cdskfjds"
	            android:textSize="16sp" />
	
	        <TextView
	            android:id="@+id/feed_datetime"
	            android:layout_width="wrap_content"
	            android:layout_height="wrap_content"
	            android:gravity="center_vertical|right"
	            android:singleLine="true"
	            android:textIsSelectable="false"
	            android:text="dsjkfldsjalf"
	            android:textSize="16sp" />

	    </LinearLayout>   
    </LinearLayout>
<!-- 
    <CheckBox
        android:id="@+id/cb_lv_item_read"
        android:layout_gravity="right"
        android:layout_width="wrap_content"
        android:layout_height="match_parent" />
 -->
</LinearLayout>