53 lines
No EOL
2.3 KiB
XML
53 lines
No EOL
2.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout 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:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/purchase_dialog_shadow_btn_bg">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/card_button"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
|
android:minHeight="@dimen/card_button_min_size"
|
|
android:orientation="vertical"
|
|
android:gravity="center"
|
|
android:paddingBottom="@dimen/list_header_padding"
|
|
android:paddingLeft="@dimen/list_content_padding"
|
|
android:paddingRight="@dimen/list_content_padding"
|
|
android:paddingTop="@dimen/list_header_padding">
|
|
|
|
<ProgressBar
|
|
android:id="@+id/card_button_progress"
|
|
android:layout_width="@dimen/card_button_progress_size"
|
|
android:layout_height="@dimen/card_button_progress_size"
|
|
android:indeterminate="true"
|
|
android:visibility="gone"/>
|
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
android:id="@+id/card_button_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:letterSpacing="@dimen/text_button_letter_spacing"
|
|
android:textColor="@color/color_white"
|
|
android:textSize="@dimen/text_button_text_size"
|
|
osmand:typeface="@string/font_roboto_medium"
|
|
tools:text="Buy - 5€"/>
|
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
android:id="@+id/card_button_subtitle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:letterSpacing="@dimen/text_button_letter_spacing"
|
|
android:textColor="@color/white_50_transparent"
|
|
android:textSize="@dimen/text_button_text_size"
|
|
osmand:typeface="@string/font_roboto_regular"
|
|
tools:text="One time purchase"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</FrameLayout> |