[android] added sale view

This commit is contained in:
Dmitry Donskoy 2019-06-27 15:41:39 +03:00 committed by Aleksandr Zatsepin
parent 9d087849b2
commit e6d4eb2cf2
4 changed files with 42 additions and 3 deletions

View file

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/sale_view_bg"/>
<corners android:radius="6dp"/>
</shape>

View file

@ -55,13 +55,18 @@
android:textColor="@color/bookmark_subscription_subtitle"
android:textAppearance="?android:attr/textAppearanceMedium"
tools:ignore="UnusedAttribute"/>
<LinearLayout
<FrameLayout
android:layout_marginTop="@dimen/margin_base"
android:layout_width="match_parent"
android:gravity="center"
android:layout_height="wrap_content">
<include layout="@layout/subscription_offer_card"/>
</LinearLayout>
<include
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_marginTop="@dimen/margin_base_plus"
layout="@layout/subscription_offer_card"/>
<include layout="@layout/subscription_offer_sale"/>
</FrameLayout>
<FrameLayout
android:layout_width="wrap_content"

View file

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/sale"
android:layout_gravity="top"
android:textSize="@dimen/text_size_toolbar"
android:textStyle="bold"
android:fontFamily="@string/robotoMedium"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="?attr/routingButtonHint"
android:lineSpacingExtra="2sp"
android:text="Save 38$"
tools:text="Save 38$"
tools:ignore="UnusedAttribute"
android:background="@drawable/sale_view_bg"
android:paddingTop="@dimen/margin_quarter_plus"
android:paddingBottom="@dimen/margin_quarter_plus"
android:paddingLeft="@dimen/margin_half_plus"
android:paddingEnd="@dimen/margin_half_plus"
android:paddingRight="@dimen/margin_half_plus"
android:paddingStart="@dimen/margin_half_plus"/>
</LinearLayout>

View file

@ -202,5 +202,6 @@
<color name="tips_and_triks_secondary_text_night">@color/dark_gray</color>
<color name="turquoise">#d0f6ff</color>
<color name="bookmark_subscription_subtitle">#c6152b1c</color>
<color name="sale_view_bg">#a335f4</color>
</resources>