[android] Added megafon search category

This commit is contained in:
Dmitry Donskoy 2019-02-08 15:25:49 +03:00 committed by Aleksandr Zatsepin
parent 606acfebb3
commit b6e1f3aaae
26 changed files with 26 additions and 9 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.7 KiB

View file

@ -21,8 +21,7 @@
android:layout_centerVertical="true"
android:layout_marginStart="@dimen/margin_base"
android:layout_marginLeft="@dimen/margin_base"
android:layout_below="@id/ad_choices_label"
tools:src="@drawable/ic_category_taxi"/>
android:layout_below="@id/ad_choices_label"/>
<TextView
android:id="@+id/promo_title"
android:layout_width="wrap_content"

View file

@ -102,4 +102,5 @@
<attr name="filterPropertyTextColor" format="color"/>
<attr name="adsRemovalOptionsBg" format="reference"/>
<attr name="adsRemovalOptionsDivider" format="color"/>
<attr name="searchPromoLogo" format="reference"/>
</resources>

View file

@ -144,6 +144,7 @@
<item name="android:textAppearanceSmall">@style/TextAppearance.Small</item>
<item name="android:textAppearanceMedium">@style/TextAppearance.Medium</item>
<item name="android:textAppearanceLarge">@style/TextAppearance.Large</item>
<item name="searchPromoLogo">@drawable/ic_category_megafon_night</item>
</style>
<!-- Night theme -->
@ -291,5 +292,6 @@
<item name="android:textAppearanceSmall">@style/TextAppearance.Small</item>
<item name="android:textAppearanceMedium">@style/TextAppearance.Medium</item>
<item name="android:textAppearanceLarge">@style/TextAppearance.Large</item>
<item name="searchPromoLogo">@drawable/ic_category_megafon_night</item>
</style>
</resources>

View file

@ -135,7 +135,8 @@ class CategoriesAdapter extends RecyclerView.Adapter<CategoriesAdapter.ViewHolde
break;
case TYPE_PROMO_CATEGORY:
view = mInflater.inflate(R.layout.item_search_promo_category, parent, false);
viewHolder = new PromoViewHolder(view, view.findViewById(R.id.promo_title));
TextView callToActionView = view.findViewById(R.id.promo_action);
viewHolder = new PromoViewHolder(view, view.findViewById(R.id.promo_title), callToActionView);
break;
default:
throw new AssertionError("Unsupported type detected: " + viewType);
@ -163,12 +164,15 @@ class CategoriesAdapter extends RecyclerView.Adapter<CategoriesAdapter.ViewHolde
private final ImageView mIcon;
@NonNull
private final View mRemoveAds;
@NonNull
private final TextView mCallToActionView;
PromoViewHolder(@NonNull View v, @NonNull TextView tv)
PromoViewHolder(@NonNull View v, @NonNull TextView tv, @NonNull TextView callToActionView)
{
super(v, tv);
mIcon = v.findViewById(R.id.promo_icon);
mRemoveAds = v.findViewById(R.id.remove_ads);
mCallToActionView = callToActionView;
Resources res = v.getResources();
int crossArea = res.getDimensionPixelSize(R.dimen.margin_base);
UiUtils.expandTouchAreaForView(mRemoveAds, crossArea);
@ -207,6 +211,7 @@ class CategoriesAdapter extends RecyclerView.Adapter<CategoriesAdapter.ViewHolde
PromoCategory promo = PromoCategory.findByStringId(categoryId);
if (promo != null)
{
mCallToActionView.setText(promo.getCallToActionText());
String event = Statistics.EventName.SEARCH_SPONSOR_CATEGORY_SHOWN;
Statistics.INSTANCE.trackSearchPromoCategory(event, promo.getProvider());
}

View file

@ -13,26 +13,26 @@ import java.util.List;
public enum PromoCategory
{
RUTAXI
MEGAFON
{
@NonNull
@Override
String getKey()
{
return "taxi";
return "megafon";
}
@Override
int getStringId()
{
return R.string.taxi;
return R.string.megafon;
}
@NonNull
@Override
String getProvider()
{
return "RuTaxi";
return "Megafon";
}
@Override
@ -53,6 +53,12 @@ public enum PromoCategory
{
return Framework.nativeHasMegafonCategoryBanner();
}
@Override
int getCallToActionText()
{
return R.string.details;
}
};
@NonNull
@ -68,6 +74,9 @@ public enum PromoCategory
abstract boolean isSupported();
@StringRes
abstract int getCallToActionText();
@NonNull
abstract PromoCategoryProcessor createProcessor(@NonNull Activity activity);

View file

@ -3,6 +3,7 @@ package com.mapswithme.maps.search;
import android.app.Activity;
import android.support.annotation.NonNull;
import com.mapswithme.maps.Framework;
import com.mapswithme.util.Utils;
public class RutaxiPromoProcessor implements PromoCategoryProcessor
@ -18,6 +19,6 @@ public class RutaxiPromoProcessor implements PromoCategoryProcessor
@Override
public void process()
{
Utils.openUrl(mActivity, "https://go.onelink.me/2944814706/86db6339");
Utils.openUrl(mActivity, Framework.nativeGetMegafonCategoryBannerUrl());
}
}