2018-08-07 19:51:06 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-08-08 18:17:00 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-08-09 21:07:47 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-08-07 19:51:06 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2019-04-24 23:45:21 +02:00
|
|
|
android:fitsSystemWindows="true"
|
2018-08-07 19:51:06 +02:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
2018-08-08 18:17:00 +02:00
|
|
|
<android.support.design.widget.AppBarLayout
|
2018-08-23 14:03:59 +02:00
|
|
|
android:id="@+id/app_bar_layout"
|
2018-08-08 18:17:00 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/card_bg_color">
|
|
|
|
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/action_bar_height">
|
|
|
|
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:text="@string/shared_string_settings"
|
|
|
|
android:textColor="@color/app_bar_title_light"
|
|
|
|
android:textSize="@dimen/title_text_size"
|
|
|
|
app:typeface="@string/font_roboto_mono_bold"/>
|
|
|
|
|
|
|
|
</android.support.v7.widget.Toolbar>
|
|
|
|
|
|
|
|
</android.support.design.widget.AppBarLayout>
|
|
|
|
|
|
|
|
<ScrollView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-08-09 21:07:47 +02:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingBottom="@dimen/list_view_bottom_padding">
|
2018-08-08 18:17:00 +02:00
|
|
|
|
|
|
|
<include layout="@layout/list_item_divider"/>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/card_bg_color"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/list_header_height"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:paddingLeft="@dimen/content_padding_standard"
|
|
|
|
android:paddingRight="@dimen/content_padding_standard"
|
|
|
|
android:text="@string/gps_and_location"
|
|
|
|
android:textColor="?android:textColorPrimary"
|
|
|
|
android:textSize="@dimen/list_item_title_text_size"
|
|
|
|
app:typeface="@string/font_roboto_medium"/>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/gps_and_loc_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<include layout="@layout/list_item_divider"/>
|
|
|
|
|
2019-12-05 17:55:34 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/card_bg_color"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/list_header_height"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:paddingLeft="@dimen/content_padding_standard"
|
|
|
|
android:paddingRight="@dimen/content_padding_standard"
|
|
|
|
android:text="@string/units_and_formats"
|
|
|
|
android:textColor="?android:textColorPrimary"
|
|
|
|
android:textSize="@dimen/list_item_title_text_size"
|
|
|
|
app:typeface="@string/font_roboto_medium"/>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/units_and_formats_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<include layout="@layout/list_item_divider"/>
|
|
|
|
|
2019-02-11 18:05:49 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/card_bg_color"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/list_header_height"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:paddingLeft="@dimen/content_padding_standard"
|
|
|
|
android:paddingRight="@dimen/content_padding_standard"
|
|
|
|
android:text="@string/shared_string_appearance"
|
|
|
|
android:textColor="?android:textColorPrimary"
|
|
|
|
android:textSize="@dimen/list_item_title_text_size"
|
|
|
|
app:typeface="@string/font_roboto_medium"/>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/gps_points_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<include layout="@layout/list_item_divider"/>
|
|
|
|
|
2019-04-29 11:11:35 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/card_bg_color"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/list_header_height"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:paddingLeft="@dimen/content_padding_standard"
|
|
|
|
android:paddingRight="@dimen/content_padding_standard"
|
|
|
|
android:text="@string/privacy"
|
|
|
|
android:textColor="?android:textColorPrimary"
|
|
|
|
android:textSize="@dimen/list_item_title_text_size"
|
|
|
|
app:typeface="@string/font_roboto_medium"/>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/proxy_settings_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2019-05-24 10:58:26 +02:00
|
|
|
<include layout="@layout/list_item_divider" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/card_bg_color"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/list_header_height"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:paddingLeft="@dimen/content_padding_standard"
|
|
|
|
android:paddingRight="@dimen/content_padding_standard"
|
|
|
|
android:text="@string/gpx_settings"
|
|
|
|
android:textColor="?android:textColorPrimary"
|
|
|
|
android:textSize="@dimen/list_item_title_text_size"
|
|
|
|
app:typeface="@string/font_roboto_medium" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/gpx_settings_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2019-04-29 11:11:35 +02:00
|
|
|
<include layout="@layout/list_item_divider"/>
|
|
|
|
|
2018-08-08 18:17:00 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/card_bg_color"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
|
|
android:layout_width="match_parent"
|
2018-08-10 15:55:09 +02:00
|
|
|
android:layout_height="wrap_content"
|
2018-08-08 18:17:00 +02:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:paddingLeft="@dimen/content_padding_standard"
|
|
|
|
android:paddingRight="@dimen/content_padding_standard"
|
2018-09-28 15:44:47 +02:00
|
|
|
android:text="@string/share_location_as"
|
|
|
|
android:textColor="?android:textColorPrimary"
|
|
|
|
android:textSize="@dimen/list_item_title_text_size"
|
2019-02-11 18:05:49 +01:00
|
|
|
app:firstBaselineToTopHeight="28sp"
|
2018-09-28 15:44:47 +02:00
|
|
|
app:typeface="@string/font_roboto_medium" />
|
|
|
|
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
2018-10-25 11:52:32 +02:00
|
|
|
android:id="@+id/share_as_description"
|
2018-09-28 15:44:47 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-10-25 11:52:32 +02:00
|
|
|
android:background="?attr/selectableItemBackground"
|
2018-09-28 15:44:47 +02:00
|
|
|
android:paddingLeft="@dimen/content_padding_standard"
|
|
|
|
android:paddingRight="@dimen/content_padding_standard"
|
2018-10-25 11:52:32 +02:00
|
|
|
android:text="@string/share_location_as_description"
|
2018-09-28 15:44:47 +02:00
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
|
|
android:textSize="@dimen/list_item_description_text_size"
|
|
|
|
app:firstBaselineToTopHeight="20sp"
|
|
|
|
app:lastBaselineToBottomHeight="16sp"
|
|
|
|
app:typeface="@string/font_roboto_regular" />
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_marginStart="@dimen/content_padding_standard"
|
|
|
|
android:layout_marginLeft="@dimen/content_padding_standard"
|
|
|
|
android:layout_marginBottom="@dimen/content_padding_half"
|
|
|
|
android:background="?attr/card_divider_color" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/share_as_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical" />
|
|
|
|
|
2018-10-25 11:52:32 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/add_new_device_btn"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/dialog_button_height"
|
|
|
|
android:layout_marginBottom="@dimen/content_padding_standard"
|
|
|
|
android:layout_marginLeft="@dimen/content_padding_half"
|
|
|
|
android:layout_marginRight="@dimen/content_padding_half"
|
|
|
|
android:background="@drawable/btn_round"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:paddingLeft="@dimen/content_padding_half"
|
|
|
|
android:paddingRight="@dimen/content_padding_half">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/add_new_device_icon"
|
|
|
|
android:layout_width="@dimen/list_item_icon_size"
|
|
|
|
android:layout_height="@dimen/list_item_icon_size"
|
|
|
|
tools:src="@drawable/ic_action_add"
|
|
|
|
tools:tint="@color/icon_light" />
|
|
|
|
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
|
|
android:id="@+id/add_new_device_title"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="@dimen/content_padding_big"
|
|
|
|
android:layout_marginRight="@dimen/content_padding_big"
|
|
|
|
android:text="@string/add_device"
|
|
|
|
android:textColor="?android:textColorPrimary"
|
|
|
|
android:textSize="@dimen/list_item_title_text_size"
|
|
|
|
app:typeface="@string/font_roboto_medium" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2018-09-28 15:44:47 +02:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<include layout="@layout/list_item_divider" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/card_bg_color"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:paddingLeft="@dimen/content_padding_standard"
|
|
|
|
android:paddingRight="@dimen/content_padding_standard"
|
2018-08-08 18:17:00 +02:00
|
|
|
android:text="@string/osmand_connect"
|
|
|
|
android:textColor="?android:textColorPrimary"
|
|
|
|
android:textSize="@dimen/list_item_title_text_size"
|
2019-02-11 18:05:49 +01:00
|
|
|
app:firstBaselineToTopHeight="28sp"
|
2018-08-08 18:17:00 +02:00
|
|
|
app:typeface="@string/font_roboto_medium"/>
|
|
|
|
|
2018-08-10 15:55:09 +02:00
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingLeft="@dimen/content_padding_standard"
|
|
|
|
android:paddingRight="@dimen/content_padding_standard"
|
|
|
|
android:text="@string/osmand_connect_desc"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
|
|
android:textSize="@dimen/list_item_description_text_size"
|
|
|
|
app:firstBaselineToTopHeight="20sp"
|
|
|
|
app:lastBaselineToBottomHeight="16sp"
|
|
|
|
app:typeface="@string/font_roboto_regular"/>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_marginBottom="@dimen/content_padding_half"
|
|
|
|
android:layout_marginLeft="@dimen/content_padding_standard"
|
|
|
|
android:layout_marginStart="@dimen/content_padding_standard"
|
|
|
|
android:background="?attr/card_divider_color"/>
|
|
|
|
|
2018-08-08 18:17:00 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/osmand_connect_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2018-08-09 21:07:47 +02:00
|
|
|
<include layout="@layout/list_item_divider"/>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/card_bg_color"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/list_header_height"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:paddingLeft="@dimen/content_padding_standard"
|
|
|
|
android:paddingRight="@dimen/content_padding_standard"
|
|
|
|
android:text="@string/shared_string_account"
|
|
|
|
android:textColor="?android:textColorPrimary"
|
|
|
|
android:textSize="@dimen/list_item_title_text_size"
|
|
|
|
app:typeface="@string/font_roboto_medium"/>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/user_row"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/user_icon"
|
2018-10-19 15:03:10 +02:00
|
|
|
android:layout_width="@dimen/list_item_icon_size_big"
|
|
|
|
android:layout_height="@dimen/list_item_icon_size_big"
|
2018-08-09 21:07:47 +02:00
|
|
|
android:layout_marginEnd="@dimen/content_padding_standard"
|
|
|
|
android:layout_marginLeft="@dimen/content_padding_half"
|
|
|
|
android:layout_marginRight="@dimen/content_padding_standard"
|
|
|
|
android:layout_marginStart="@dimen/content_padding_half"
|
|
|
|
android:layout_marginTop="@dimen/image_button_padding"
|
|
|
|
tools:src="@drawable/img_user_picture"/>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="@dimen/content_padding_standard"
|
|
|
|
android:layout_marginRight="@dimen/content_padding_standard"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
|
|
android:id="@+id/username"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="2"
|
|
|
|
android:textColor="?android:textColorPrimary"
|
|
|
|
android:textSize="@dimen/list_item_title_text_size"
|
|
|
|
app:firstBaselineToTopHeight="25sp"
|
|
|
|
app:typeface="@string/font_roboto_regular"
|
|
|
|
tools:text="Some user name"/>
|
|
|
|
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="2"
|
|
|
|
android:text="@string/connected_account"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
|
|
android:textSize="@dimen/list_item_description_text_size"
|
|
|
|
app:firstBaselineToTopHeight="20sp"
|
|
|
|
app:lastBaselineToBottomHeight="16sp"
|
|
|
|
app:typeface="@string/font_roboto_regular"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
|
|
android:id="@+id/logout_btn"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/list_header_height"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:paddingLeft="@dimen/dialog_padding_horizontal"
|
|
|
|
android:paddingRight="@dimen/dialog_padding_horizontal"
|
|
|
|
android:text="@string/shared_string_logout"
|
|
|
|
android:textColor="?attr/ctrl_active_color"
|
|
|
|
app:typeface="@string/font_roboto_medium"/>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:background="?attr/card_divider_color"/>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/help_row"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:paddingLeft="@dimen/content_padding_standard"
|
|
|
|
android:paddingRight="@dimen/content_padding_standard">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/help_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"/>
|
|
|
|
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/logout_help_desc"
|
|
|
|
android:textColor="?android:textColorPrimary"
|
|
|
|
android:textSize="@dimen/list_item_title_text_size"
|
|
|
|
app:firstBaselineToTopHeight="25sp"
|
|
|
|
app:lastBaselineToBottomHeight="16sp"
|
|
|
|
app:typeface="@string/font_roboto_regular"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2018-08-08 18:17:00 +02:00
|
|
|
<include layout="@layout/card_bottom_divider"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</ScrollView>
|
|
|
|
|
2018-08-07 19:51:06 +02:00
|
|
|
</LinearLayout>
|