aboutsummaryrefslogtreecommitdiff
path: root/WordPress/src/main/res/layout/reader_icon_count_view.xml
blob: 6a661b2402b2bf43df8f1cc193d576f19bb9ba56 (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
<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="horizontal">

    <ImageView
        android:id="@+id/image_count"
        android:layout_width="@dimen/reader_button_icon"
        android:layout_height="@dimen/reader_button_icon"
        android:layout_gravity="center_vertical"
        tools:src="@drawable/reader_button_comment" />

    <TextView
        android:id="@+id/text_count"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:layout_marginLeft="@dimen/margin_extra_small"
        android:textColor="@color/reader_count_text"
        android:textSize="@dimen/text_sz_medium"
        tools:text="2" />

</LinearLayout>