106 lines
3.5 KiB
XML
106 lines
3.5 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:orientation="vertical"
|
|
tools:layout_gravity="bottom">
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
|
android:id="@+id/scroll_view_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<androidx.core.widget.NestedScrollView
|
|
android:id="@+id/scroll_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:behavior_hideable="true"
|
|
app:behavior_peekHeight="@dimen/bottom_sheet_peek_height"
|
|
app:layout_behavior="@string/bottom_sheet_behavior">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/card_bg_color"
|
|
android:orientation="vertical">
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/disable_sharing_image_height">
|
|
|
|
<ImageView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scaleType="center"
|
|
android:src="@drawable/img_turn_off_sharing"/>
|
|
|
|
<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_horizontal"
|
|
android:layout_marginTop="@dimen/disable_sharing_icon_top_margin"
|
|
tools:src="@drawable/img_user_picture"/>
|
|
|
|
</FrameLayout>
|
|
|
|
<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/disable_all_sharing"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textSize="@dimen/list_item_title_text_size"
|
|
app:firstBaselineToTopHeight="28sp"
|
|
app:typeface="@string/font_roboto_medium"/>
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
android:id="@+id/description"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="@dimen/content_padding_standard"
|
|
android:paddingRight="@dimen/content_padding_standard"
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
android:textSize="@dimen/list_item_description_text_size"
|
|
app:firstBaselineToTopHeight="28sp"
|
|
app:lastBaselineToBottomHeight="16sp"
|
|
app:typeface="@string/font_roboto_regular"
|
|
tools:text="@string/disable_all_sharing_desc"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</androidx.core.widget.NestedScrollView>
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/buttons_bottom_bar_height"
|
|
android:background="?attr/card_bg_color"
|
|
android:gravity="center_vertical"
|
|
android:paddingLeft="@dimen/content_padding_half"
|
|
android:paddingRight="@dimen/content_padding_half">
|
|
|
|
<include
|
|
layout="@layout/secondary_btn"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"/>
|
|
|
|
<View
|
|
android:layout_width="@dimen/content_padding_half"
|
|
android:layout_height="match_parent"/>
|
|
|
|
<include
|
|
layout="@layout/primary_btn"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|