OsmAnd/OsmAnd-telegram/res/layout/fragment_my_location_tab.xml

268 lines
9.1 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
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="match_parent">
<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/card_bg_color">
2018-07-12 15:38:20 +02:00
<FrameLayout
android:id="@+id/image_container"
android:layout_width="match_parent"
android:layout_height="@dimen/my_location_image_height"
2018-07-12 15:38:20 +02:00
app:layout_scrollFlags="scroll">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="center"
2018-07-12 17:49:11 +02:00
android:src="@drawable/img_my_location_roadbg"/>
2018-07-12 15:38:20 +02:00
<FrameLayout
2018-07-12 15:38:20 +02:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="@dimen/content_padding_standard">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/img_my_location_user"/>
<ImageView
android:id="@+id/user_icon"
android:layout_width="@dimen/my_location_user_icon_size"
android:layout_height="@dimen/my_location_user_icon_size"
android:layout_gravity="center"
tools:src="@drawable/img_user_picture"/>
</FrameLayout>
2018-07-12 15:38:20 +02:00
</FrameLayout>
<LinearLayout
2018-06-26 14:33:44 +02:00
android:id="@+id/text_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2018-06-26 14:33:44 +02:00
android:animateLayoutChanges="true"
android:orientation="vertical"
android:paddingLeft="@dimen/my_location_text_sides_margin"
android:layout_marginBottom="@dimen/content_padding_standard"
android:paddingRight="@dimen/my_location_text_sides_margin">
2018-07-12 15:38:20 +02:00
<LinearLayout
android:layout_width="match_parent"
2018-06-27 18:00:40 +02:00
android:layout_height="@dimen/action_bar_height">
<net.osmand.telegram.ui.views.TextViewEx
2018-06-27 18:00:40 +02:00
android:id="@+id/title"
2018-07-12 17:49:11 +02:00
android:layout_width="0dp"
2018-06-27 18:00:40 +02:00
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
2018-07-12 15:38:20 +02:00
android:layout_weight="1"
2018-07-12 17:49:11 +02:00
android:ellipsize="end"
2018-06-27 18:00:40 +02:00
android:gravity="center"
2018-07-12 17:49:11 +02:00
android:maxLines="1"
2018-06-27 18:00:40 +02:00
android:text="@string/start_location_sharing"
android:textColor="?attr/ctrl_active_color"
android:textSize="@dimen/title_text_size"
app:typeface="@string/font_roboto_mono_bold"/>
2018-06-27 18:00:40 +02:00
2018-07-12 15:38:20 +02:00
<ImageView
android:id="@+id/options"
android:layout_width="wrap_content"
android:layout_height="match_parent"
2018-07-12 17:49:11 +02:00
android:layout_marginLeft="@dimen/content_padding_standard"
android:layout_marginStart="@dimen/content_padding_standard"
2018-07-12 15:38:20 +02:00
android:background="?attr/selectableItemBackgroundBorderless"
android:paddingLeft="@dimen/content_padding_half"
android:paddingRight="@dimen/content_padding_half"
android:visibility="gone"
tools:src="@drawable/ic_action_other_menu"
tools:tint="@color/icon_light"
2018-07-12 17:49:11 +02:00
tools:visibility="visible"/>
2018-07-12 15:38:20 +02:00
</LinearLayout>
<TextView
android:id="@+id/description"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
2018-06-26 14:33:44 +02:00
android:text="@string/location_sharing_description"
android:textColor="?android:attr/textColorSecondary"
android:textSize="@dimen/descr_text_size"/>
</LinearLayout>
<FrameLayout
android:id="@+id/search_box"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/content_padding_half"
android:layout_marginRight="@dimen/content_padding_half"
android:visibility="gone"
tools:background="@drawable/btn_round">
<LinearLayout
android:id="@+id/search_button"
android:layout_width="match_parent"
android:layout_height="@dimen/search_box_height"
android:background="?attr/selectableItemBackgroundBorderless"
android:gravity="center_vertical">
<TextView
android:id="@+id/search_hint"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/content_padding_standard"
android:layout_marginRight="@dimen/content_padding_standard"
android:layout_weight="1"
android:ellipsize="end"
android:gravity="center_vertical"
android:maxLines="1"
android:text="@string/my_location_search_hint"
android:textColor="?android:attr/textColorSecondary"
android:textSize="@dimen/descr_text_size"/>
<ImageView
android:id="@+id/search_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="@dimen/content_padding_half"
android:layout_marginRight="@dimen/content_padding_half"
tools:src="@drawable/ic_action_search_dark"
tools:tint="@color/icon_light"/>
</LinearLayout>
</FrameLayout>
<LinearLayout
android:id="@+id/title_container"
2018-08-08 10:44:54 +02:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
2018-08-08 18:23:37 +02:00
<LinearLayout
android:id="@+id/title_row"
android:layout_width="match_parent"
android:layout_height="@dimen/action_bar_height"
2018-08-08 18:23:37 +02:00
android:gravity="center_vertical">
2018-08-08 18:23:37 +02:00
<net.osmand.telegram.ui.views.TextViewEx
android:layout_width="0dp"
android:layout_height="@dimen/action_bar_height"
2018-08-08 18:23:37 +02:00
android:layout_weight="1"
android:ellipsize="end"
android:gravity="center_vertical"
android:letterSpacing="@dimen/title_letter_spacing"
android:maxLines="1"
android:paddingLeft="@dimen/content_padding_standard"
android:paddingRight="@dimen/content_padding_standard"
android:text="@string/my_location"
android:textColor="@color/app_bar_title_light"
android:textSize="@dimen/title_text_size"
app:typeface="@string/font_roboto_mono_bold" />
<ImageView
android:id="@+id/options_title"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginLeft="@dimen/content_padding_standard"
android:layout_marginRight="@dimen/content_padding_standard"
android:background="?attr/selectableItemBackgroundBorderless"
android:paddingLeft="@dimen/content_padding_half"
android:paddingRight="@dimen/content_padding_half"
tools:src="@drawable/ic_action_other_menu"
tools:tint="@color/icon_light"
tools:visibility="visible" />
</LinearLayout>
<View
android:id="@+id/appbar_divider"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginLeft="@dimen/content_padding_standard"
android:layout_marginStart="@dimen/content_padding_standard"
android:background="?attr/card_divider_color" />
2018-08-08 10:44:54 +02:00
<LinearLayout
android:id="@+id/stop_all_sharing_row"
2018-08-08 10:44:54 +02:00
android:layout_width="match_parent"
android:layout_height="@dimen/action_bar_height"
android:background="?attr/selectableItemBackground"
android:gravity="center_vertical"
android:paddingLeft="@dimen/content_padding_standard"
android:paddingRight="@dimen/content_padding_standard">
2018-08-08 10:44:54 +02:00
<net.osmand.telegram.ui.views.TextViewEx
android:id="@+id/stop_all_sharing_title"
2018-08-08 10:44:54 +02:00
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginEnd="@dimen/content_padding_standard"
android:layout_marginRight="@dimen/content_padding_standard"
2018-08-08 10:44:54 +02:00
android:layout_weight="1"
android:ellipsize="end"
android:maxLines="1"
android:text="@string/stop_sharing_all"
android:textColor="?attr/ctrl_active_color"
android:textSize="@dimen/descr_text_size"
app:typeface="@string/font_roboto_medium" />
2018-08-08 10:44:54 +02:00
<Switch
android:id="@+id/stop_all_sharing_switcher"
2018-08-08 10:44:54 +02:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@null"
android:clickable="false"
android:focusable="false"/>
2018-08-08 10:44:54 +02:00
</LinearLayout>
</LinearLayout>
</android.support.design.widget.AppBarLayout>
<FrameLayout
android:layout_width="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
android:paddingBottom="@dimen/list_view_bottom_padding"/>
<net.osmand.telegram.ui.views.TextViewEx
android:id="@+id/start_sharing_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|center_horizontal"
2018-08-10 16:07:20 +02:00
android:background="@drawable/extended_fab_bg"
android:drawableLeft="@drawable/ic_action_share_location"
android:drawablePadding="@dimen/content_padding_half"
android:drawableStart="@drawable/ic_action_share_location"
android:gravity="center"
android:paddingLeft="32dp"
android:paddingRight="32dp"
android:text="@string/share_location"
android:textColor="@color/white"
app:typeface="@string/font_roboto_medium"
2018-08-10 16:11:17 +02:00
android:visibility="gone"
tools:visibility="visible"/>
</FrameLayout>
</android.support.design.widget.CoordinatorLayout>