Dmitry Donskoy 2020-03-16 14:12:20 +03:00 committed by Aleksandr Zatsepin
parent ba810fe736
commit f0c8f9976a
4 changed files with 4 additions and 8 deletions

View file

@ -3,7 +3,7 @@
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners
android:bottomRightRadius="8dp"
android:topRightRadius="8dp" />
android:bottomRightRadius="@dimen/margin_half"
android:topRightRadius="@dimen/margin_half" />
<solid android:color="@color/white_60" />
</shape>

View file

@ -80,8 +80,6 @@
android:textColor="@color/black_primary"
android:textSize="@dimen/text_size_toolbar" />
</LinearLayout>
<LinearLayout
android:orientation="vertical"
android:layout_width="wrap_content"
@ -125,7 +123,7 @@
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/margin_base"
app:buttonBackground="@drawable/button_secondary_transparent"
app:buttonTextColor="@color/black_primary"
app:buttonTextColor="@color/white_primary"
app:progressColor="@color/base_accent" />
<TextView
android:id="@+id/restore_purchase_btn"

View file

@ -76,7 +76,6 @@
android:textColor="@color/black_primary"
android:textSize="@dimen/text_size_toolbar" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="@dimen/subscription_view_pager_height"
@ -118,7 +117,7 @@
android:layout_marginTop="@dimen/margin_base"
android:layout_marginEnd="@dimen/margin_base_plus"
app:buttonBackground="@drawable/button_secondary_transparent"
app:buttonTextColor="@color/black_primary"
app:buttonTextColor="@color/white_primary"
app:progressColor="@color/base_accent" />
<TextView
android:id="@+id/restore_purchase_btn"

View file

@ -13,7 +13,6 @@ import androidx.fragment.app.FragmentPagerAdapter;
import androidx.viewpager.widget.PagerAdapter;
import androidx.viewpager.widget.ViewPager;
import com.mapswithme.maps.R;
import com.mapswithme.maps.widget.DotPager;
import com.mapswithme.maps.widget.ParallaxBackgroundPageListener;
import com.mapswithme.maps.widget.ParallaxBackgroundViewPager;
import com.mapswithme.util.UiUtils;