Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fragment_bookmark_payment.xml « layout-land « res « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 199f80747971f8156eb396ff944e2421f30d0666 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent">
  <ImageView
    android:id="@+id/image"
    android:layout_width="@dimen/bookmark_purchase_img_width"
    android:layout_height="match_parent"
    android:layout_alignParentStart="true"
    android:layout_alignParentLeft="true"
    android:scaleType="centerCrop"
    android:src="@drawable/img_guides_placeholder_land"/>
  <androidx.core.widget.NestedScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_toRightOf="@id/image"
    android:layout_toEndOf="@id/image"
    android:layout_alignParentTop="true"
    android:fillViewport="true">
    <include layout="@layout/bookmark_payment_layout"/>
  </androidx.core.widget.NestedScrollView>
</RelativeLayout>