[android][booking] fix: Redesigned "Book" button.
Before Width: | Height: | Size: 581 B After Width: | Height: | Size: 1 KiB |
Before Width: | Height: | Size: 405 B After Width: | Height: | Size: 697 B |
9
android/res/drawable-v21/button_booking.xml
Normal 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>
|
Before Width: | Height: | Size: 761 B After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 3.2 KiB |
7
android/res/drawable/button_booking.xml
Normal 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>
|
|
@ -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>
|
||||
|
|
|
@ -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"/>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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()
|
||||
{
|
||||
|
|
|
@ -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:
|
||||
|
|