[android][booking] fix: Redesigned "Book" button.

This commit is contained in:
Alexander Marchuk 2016-05-27 17:00:59 +03:00
parent e3af3e415a
commit e449c5f890
12 changed files with 31 additions and 11 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 581 B

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 405 B

After

Width:  |  Height:  |  Size: 697 B

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="@color/bg_brand_booking_pressed">
<item>
<shape android:shape="rectangle">
<solid android:color="@color/bg_brand_booking"/>
</shape>
</item>
</ripple>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 761 B

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

View file

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@color/bg_brand_booking_pressed"
android:state_pressed="true"/>
<item android:drawable="@color/bg_brand_booking"/>
</selector>

View file

@ -3,7 +3,10 @@
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
style="@style/PlacePageButton"
tools:ignore="UseCompoundDrawables">
tools:layout_width="100dp"
tools:layout_height="@dimen/place_page_buttons_height"
tools:ignore="UseCompoundDrawables"
tools:background="#40202020">
<ImageView
android:id="@+id/icon"
style="@style/PlacePageButtonImage"
@ -13,5 +16,5 @@
<TextView
android:id="@+id/title"
style="@style/PlacePageButtonText"
android:text="@string/back"/>
tools:text="@string/back"/>
</LinearLayout>

View file

@ -5,7 +5,4 @@
android:layout_height="@dimen/place_page_buttons_height"
android:layout_marginTop="@dimen/margin_base"
android:orientation="horizontal"
android:background="?ppButtonsBackground"
android:clickable="true"
android:paddingLeft="@dimen/margin_half_plus"
android:paddingRight="@dimen/margin_half_plus"/>
android:background="?ppButtonsBackground"/>

View file

@ -111,4 +111,7 @@
<color name="text_editor_add_disabled">#1A000000</color>
<!-- Brand colors -->
<color name="bg_brand_booking">#FF19457D</color>
<color name="bg_brand_booking_pressed">#FF1B549E</color>
</resources>

View file

@ -143,7 +143,7 @@ final class PlacePageButtons
interface ItemListener
{
void onPrepareVisibleView(Item item, ImageView icon, TextView title);
void onPrepareVisibleView(Item item, View frame, ImageView icon, TextView title);
void onItemClick(Item item);
}
@ -206,7 +206,7 @@ final class PlacePageButtons
icon.setImageResource(item.getIcon());
title.setText(item.getTitle());
mItemListener.onPrepareVisibleView(item, icon, title);
mItemListener.onPrepareVisibleView(item, res, icon, title);
res.setOnClickListener(new View.OnClickListener()
{

View file

@ -6,6 +6,7 @@ import android.content.Intent;
import android.content.res.Configuration;
import android.content.res.Resources;
import android.content.res.TypedArray;
import android.graphics.Color;
import android.location.Location;
import android.net.Uri;
import android.os.Build;
@ -308,15 +309,15 @@ public class PlacePageView extends RelativeLayout implements View.OnClickListene
mButtons = new PlacePageButtons(this, ppButtons, new PlacePageButtons.ItemListener()
{
@Override
public void onPrepareVisibleView(PlacePageButtons.Item item, ImageView icon, TextView title)
public void onPrepareVisibleView(PlacePageButtons.Item item, View frame, ImageView icon, TextView title)
{
int color;
switch (item)
{
case BOOKING:
color = ThemeUtils.getColor(getContext(), R.attr.colorAccent);
icon.setColorFilter(color);
frame.setBackgroundResource(R.drawable.button_booking);
color = Color.WHITE;
break;
case BOOKMARK: