2016-05-02 11:29:51 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_margin="16dp">
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/titleTextView"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
|
style="@style/CardTitle"/>
|
2016-11-19 11:29:45 +00:00
|
|
|
<com.facebook.drawee.view.SimpleDraweeView
|
2016-05-02 11:29:51 +00:00
|
|
|
android:id="@+id/imageView"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="180dp"
|
|
|
|
|
android:scaleType="centerInside"/>
|
2021-02-23 10:49:59 +00:00
|
|
|
<TextView
|
2016-05-02 11:29:51 +00:00
|
|
|
android:id="@+id/descriptionTextView"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/playStoreButton"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="@string/open_in_store"/>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
</ScrollView>
|