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

subscription_detail_list_item_extended.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: 09eb0a49f8ccb9878a2aa03fc7a8576070a3a979 (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="150dp"
    android:orientation="horizontal" >

    <!--
    android:background="@drawable/checkbox_background"
        android:button="@drawable/checkbox"
     -->

	<View
        android:id="@+id/color_line_feed"
        android:layout_width="@dimen/color_bar_of_feeds"
        android:layout_height="match_parent"
        android:background="@color/slider_listview_background_color_dark_theme"/>


	<LinearLayout
	    android:layout_width="match_parent"
	    android:layout_height="match_parent"
    	android:orientation="vertical" >


	    <LinearLayout
	        android:layout_width="match_parent"
	        android:layout_height="wrap_content"
	        android:layout_marginLeft="@dimen/listview_row_margin_left"
	        android:layout_marginRight="@dimen/listview_row_margin_right"
	        android:layout_marginTop="@dimen/listview_row_margin_top"
	        android:orientation="horizontal" >

	        <com.devspark.robototextview.widget.RobotoTextView
	            android:id="@+id/tv_subscription"
	            android:layout_width="0dp"
	            android:layout_height="match_parent"
	            android:ellipsize="end"
	            android:gravity="center_vertical"
	            android:layout_gravity="left"
	            android:singleLine="true"
	            android:text="Hdfsa"
	            android:layout_weight="1"
	            android:textSize="15sp" />

	        <com.devspark.robototextview.widget.RobotoTextView
	            android:id="@+id/tv_item_date"
	            android:layout_width="wrap_content"
	            android:layout_height="match_parent"
	            android:gravity="center_vertical"
	            android:layout_gravity="right"
	            android:text="21.09.2013"
	            android:singleLine="true"
	            android:textSize="15sp"  />
	    </LinearLayout>

	    <LinearLayout
	        android:layout_width="match_parent"
	        android:layout_height="match_parent"
	        android:layout_marginLeft="@dimen/listview_row_margin_left"
	        android:layout_marginBottom="@dimen/listview_row_margin_bottom"
	        android:orientation="horizontal" >

	        <LinearLayout
                android:layout_width="0dip"
                android:layout_height="match_parent"
                android:orientation="vertical"
                android:layout_marginRight="@dimen/listview_row_margin_right"
                android:layout_weight="1" >

				<com.devspark.robototextview.widget.RobotoTextView
	                android:id="@+id/summary"
	                android:layout_width="match_parent"
	                android:layout_height="wrap_content"
	                android:ellipsize="end"
	                android:gravity="center_vertical"
	                android:lines="2"
	                android:textSize="17sp"
	                android:text="Hi\nfds"
	                android:textStyle="bold" />

	            <com.devspark.robototextview.widget.RobotoTextView
	                android:id="@+id/body"
	                android:layout_marginTop="5dp"
	                android:layout_width="match_parent"
	                android:layout_height="wrap_content"
	                android:ellipsize="end"
	                android:lines="4"
	                android:text="Test"
	                android:textColor="@color/extended_listview_item_body_text_color_dark_theme"
	                android:textSize="14sp"
	                android:autoLink="none" />
	            <!-- android:gravity="center_vertical" -->
	        </LinearLayout>


	        <LinearLayout
                android:layout_width="50dp"
                android:layout_height="match_parent"
                android:orientation="vertical"
                android:layout_gravity="right"
                android:gravity="center_horizontal|center_vertical" >

                <com.devspark.robototextview.widget.RobotoCheckBox
                    android:id="@+id/cb_lv_item_starred"
                    android:layout_width="27dp"
                    android:layout_height="27dp"
                    android:clickable="false"
                    android:focusable="false"
                    android:layout_gravity="center_horizontal"
                    android:button="@drawable/checkbox_background_empty"
                    android:background="@drawable/checkbox_background_holo_light" />

	            <com.devspark.robototextview.widget.RobotoCheckBox
	                android:id="@+id/cb_lv_item_read"
	                android:layout_marginTop="20dp"
	                android:layout_width="wrap_content"
	                android:layout_height="wrap_content"
	                android:clickable="false"
	                android:focusable="false"
                    android:layout_gravity="center_horizontal" />
	            </LinearLayout>
		</LinearLayout>

        <View
            android:id="@+id/divider"
            android:layout_width="match_parent"
            android:layout_height="1.5dp"
            android:layout_marginTop="-2.0dp"
            android:background="@color/divider_row_color_dark_theme" />

    </LinearLayout>
</LinearLayout>