2017-09-27 18:05:02 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:orientation="vertical" android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:padding="21dp">
|
|
|
|
|
<ImageView
|
|
|
|
|
android:src="@drawable/shop_empty_hourglass"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="@string/subscribe_for_hourglasses"
|
|
|
|
|
android:textSize="18sp"
|
|
|
|
|
android:gravity="center"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:textColor="@color/text_ternary"/>
|
2017-09-27 18:05:02 +00:00
|
|
|
<TextView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="@string/timetravelers_closed_description"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:textColor="@color/text_quad"
|
2017-09-27 18:05:02 +00:00
|
|
|
android:layout_marginTop="12dp"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:textSize="14sp"/>
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/subscribeButton"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="38dp"
|
|
|
|
|
android:text="@string/want_to_subscribe"
|
2019-08-07 08:29:58 +00:00
|
|
|
android:textColor="?colorAccent"
|
2017-09-27 18:05:02 +00:00
|
|
|
android:background="@drawable/layout_rounded_bg_lighter_gray"
|
|
|
|
|
android:layout_marginTop="18dp"/>
|
|
|
|
|
</LinearLayout>
|