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

subscription_list_sub_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: 5aa484f8308208919c0904ff3feb9af62607e617 (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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="@dimen/exp_listview_row_height"
    android:layout_marginLeft="50dp"
    android:orientation="horizontal">

    <ImageView
        android:layout_width="25dp"
        android:layout_height="25dp"
        android:layout_gravity="center_vertical"
        android:id="@+id/iVFavicon"/>

    <com.devspark.robototextview.widget.RobotoTextView
        android:id="@+id/summary"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_marginLeft="10dp"
        android:gravity="center_vertical"
        android:singleLine="true"
        android:layout_weight="1"
        android:textSize="20sp"
        android:textColor="@color/slider_listview_text_color_dark_theme" />

    <com.devspark.robototextview.widget.RobotoTextView
        android:id="@+id/tv_unreadCount"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:gravity="center_vertical|right"
        android:singleLine="true"
        android:layout_marginRight="20dp"
        android:layout_marginLeft="5dp"
        android:textColor="@color/slider_listview_text_color_dark_theme" />

</LinearLayout>