71 lines
No EOL
2.5 KiB
XML
71 lines
No EOL
2.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<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:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/card_padding"
|
|
android:layout_marginRight="@dimen/card_padding"
|
|
android:layout_marginBottom="@dimen/list_header_padding"
|
|
android:background="?attr/purchase_dialog_active_card_bg"
|
|
android:orientation="vertical">
|
|
|
|
<include layout="@layout/purchase_dialog_card_header" />
|
|
|
|
<View
|
|
android:id="@+id/header_div"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:layout_marginLeft="1dp"
|
|
android:layout_marginRight="1dp"
|
|
android:background="?attr/wikivoyage_card_divider_color" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/rows_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical" />
|
|
|
|
<View
|
|
android:id="@+id/buttons_div"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:layout_marginLeft="1dp"
|
|
android:layout_marginRight="1dp"
|
|
android:background="?attr/wikivoyage_card_divider_color"/>
|
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
android:id="@+id/card_button_subtitle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/card_padding"
|
|
android:layout_marginLeft="@dimen/card_padding"
|
|
android:layout_marginRight="@dimen/card_padding"
|
|
android:layout_marginBottom="@dimen/list_header_padding"
|
|
android:text="@string/osm_live_payment_header"
|
|
android:textColor="?attr/dialog_text_description_color"
|
|
android:textSize="@dimen/default_desc_text_size"
|
|
osmand:typeface="@string/font_roboto_regular" />
|
|
|
|
<ProgressBar
|
|
android:id="@+id/card_progress"
|
|
android:layout_width="@dimen/card_button_progress_size"
|
|
android:layout_height="@dimen/card_button_progress_size"
|
|
android:layout_gravity="center"
|
|
android:layout_marginTop="@dimen/card_padding"
|
|
android:layout_marginLeft="@dimen/card_padding"
|
|
android:layout_marginRight="@dimen/card_padding"
|
|
android:layout_marginBottom="@dimen/list_content_padding_large"
|
|
android:indeterminate="true"
|
|
android:visibility="visible" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/card_buttons_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="2dp"
|
|
android:paddingBottom="@dimen/content_padding_small"
|
|
android:orientation="vertical"
|
|
android:visibility="gone" />
|
|
|
|
</LinearLayout> |