diff --git a/android/res/animator/pull_up_on_touch.xml b/android/res/animator/pull_up_on_touch.xml new file mode 100644 index 0000000000..4bb123310f --- /dev/null +++ b/android/res/animator/pull_up_on_touch.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + diff --git a/android/res/layout/guides_discovery_item.xml b/android/res/layout/guides_discovery_item.xml index b829129e34..190fec8c1f 100644 --- a/android/res/layout/guides_discovery_item.xml +++ b/android/res/layout/guides_discovery_item.xml @@ -5,6 +5,7 @@ xmlns:tools="http://schemas.android.com/tools" android:layout_height="wrap_content" android:layout_width="wrap_content" + android:stateListAnimator="@animator/pull_up_on_touch" android:padding="@dimen/margin_eighth" android:clipToPadding="false"> items, @Nullable ItemSelectedListener listener) { super(itemView, items, listener); - mImage = itemView.findViewById(R.id.image); - mSubtitle = itemView.findViewById(R.id.subtitle); + mItemView = itemView; + mImage = mItemView.findViewById(R.id.image); + mSubtitle = mItemView.findViewById(R.id.subtitle); } @Override @@ -580,7 +583,17 @@ public class Holders .centerCrop() .into(mImage); mSubtitle.setText(item.getSubtitle()); + bindActivationState(item); // TODO: another fields comming soon; } + + private void bindActivationState(@NonNull GuidesGallery.Item item) + { + boolean activated = mItemView.isActivated(); + if (activated != item.isActivated()) + { + mItemView.post(() -> mItemView.setActivated(item.isActivated())); + } + } } } diff --git a/android/src/com/mapswithme/maps/guides/GuidesGallery.java b/android/src/com/mapswithme/maps/guides/GuidesGallery.java index 8599899131..d2c2952be2 100644 --- a/android/src/com/mapswithme/maps/guides/GuidesGallery.java +++ b/android/src/com/mapswithme/maps/guides/GuidesGallery.java @@ -79,6 +79,7 @@ public class GuidesGallery implements PlacePageData private final CityParams mCityParams; @Nullable private final OutdoorParams mOutdoorParams; + private boolean mActivated = false; public Item(@NonNull String guideId, @NonNull String url, @NonNull String imageUrl, @NonNull String title, @NonNull String subTitle, int type, @@ -156,6 +157,16 @@ public class GuidesGallery implements PlacePageData return mOutdoorParams; } + public void setActivated(boolean activated) + { + mActivated = activated; + } + + public boolean isActivated() + { + return mActivated; + } + @Override public int describeContents() { diff --git a/android/src/com/mapswithme/maps/widget/placepage/GuidesGalleryViewRenderer.java b/android/src/com/mapswithme/maps/widget/placepage/GuidesGalleryViewRenderer.java index e08aa0e7b3..4f92db29ba 100644 --- a/android/src/com/mapswithme/maps/widget/placepage/GuidesGalleryViewRenderer.java +++ b/android/src/com/mapswithme/maps/widget/placepage/GuidesGalleryViewRenderer.java @@ -15,7 +15,6 @@ import androidx.recyclerview.widget.SnapHelper; import com.mapswithme.maps.R; import com.mapswithme.maps.gallery.GalleryAdapter; import com.mapswithme.maps.gallery.ItemSelectedListener; -import com.mapswithme.maps.gallery.Items; import com.mapswithme.maps.gallery.impl.Factory; import com.mapswithme.maps.guides.GuidesGallery; import com.mapswithme.maps.widget.recycler.ItemDecoratorFactory; @@ -37,6 +36,8 @@ public class GuidesGalleryViewRenderer implements PlacePageViewRenderer