60 lines
2 KiB
XML
60 lines
2 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout
|
||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginBottom="@dimen/list_item_bottom_margin"
|
||
|
android:background="?attr/selectableItemBackground"
|
||
|
android:paddingLeft="@dimen/content_padding_standard"
|
||
|
android:paddingRight="@dimen/content_padding_standard"
|
||
|
tools:background="@color/card_bg_light">
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/icon"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginEnd="@dimen/content_padding_big"
|
||
|
android:layout_marginRight="@dimen/content_padding_big"
|
||
|
tools:src="@drawable/ic_action_live_now"
|
||
|
tools:tint="@color/icon_light"/>
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginEnd="@dimen/content_padding_standard"
|
||
|
android:layout_marginRight="@dimen/content_padding_standard"
|
||
|
android:layout_weight="1"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<net.osmand.telegram.ui.views.TextViewEx
|
||
|
android:id="@+id/title"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:textColor="?android:textColorPrimary"
|
||
|
android:textSize="@dimen/title_text_size"
|
||
|
app:typeface="@string/font_roboto_regular"
|
||
|
tools:text="Some title"/>
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/description"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:textColor="?android:attr/textColorSecondary"
|
||
|
android:textSize="@dimen/descr_text_size"
|
||
|
tools:text="Some long description"/>
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
<net.osmand.telegram.ui.views.TextViewEx
|
||
|
android:id="@+id/value"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center_vertical"
|
||
|
android:textColor="?attr/ctrl_active_color"
|
||
|
app:typeface="@string/font_roboto_medium"
|
||
|
tools:text="Value"/>
|
||
|
|
||
|
</LinearLayout>
|