59 lines
No EOL
2.4 KiB
XML
59 lines
No EOL
2.4 KiB
XML
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:osmand="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/account_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:minHeight="@dimen/bottom_sheet_list_item_height"
|
|
android:orientation="horizontal">
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:id="@+id/account_icon"
|
|
android:layout_width="@dimen/standard_icon_size"
|
|
android:layout_height="@dimen/standard_icon_size"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginLeft="@dimen/content_padding"
|
|
android:layout_marginTop="@dimen/content_padding_small"
|
|
android:layout_marginRight="@dimen/content_padding"
|
|
android:layout_marginBottom="@dimen/content_padding_small"
|
|
android:tint="?attr/default_icon_color"
|
|
osmand:srcCompat="@drawable/ic_action_user_account" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/content_padding"
|
|
android:layout_marginTop="@dimen/subHeaderPadding"
|
|
android:layout_marginRight="@dimen/content_padding"
|
|
android:layout_marginBottom="@dimen/subHeaderPadding"
|
|
android:orientation="vertical">
|
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
android:id="@+id/account_title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:letterSpacing="@dimen/description_letter_spacing"
|
|
android:minHeight="@dimen/default_desc_line_height"
|
|
android:text="@string/login_account"
|
|
android:textColor="?android:textColorSecondary"
|
|
android:textSize="@dimen/default_desc_text_size"
|
|
osmand:lineHeight="@dimen/default_desc_line_height"
|
|
osmand:typeface="@string/font_roboto_regular" />
|
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
android:id="@+id/user_name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:letterSpacing="@dimen/text_button_letter_spacing"
|
|
android:minHeight="@dimen/default_title_line_height"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textSize="@dimen/default_list_text_size"
|
|
osmand:lineHeight="@dimen/default_title_line_height"
|
|
osmand:typeface="@string/font_roboto_regular"
|
|
tools:text="SomeVeryLongLoginWithTooManyCharacters" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |