Merge pull request #4997 from goblinr/MAPSME-94-ext-fix-pp-close-animation

[android] Fixed Place Page close animation
This commit is contained in:
Aleksandr Zatsepin 2016-12-19 16:28:54 +03:00 committed by GitHub
commit 37d67d528d
4 changed files with 34 additions and 4 deletions

View file

@ -25,6 +25,12 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?panel"/>
<View
android:id="@+id/pp__height_compensation"
android:layout_width="match_parent"
android:layout_height="0dp"
android:background="?cardBackground"/>
</LinearLayout>
</com.mapswithme.maps.widget.ObservableScrollView>

View file

@ -128,10 +128,10 @@ final class BannerController implements View.OnClickListener
mFrame.setOnClickListener(this);
}
void close()
boolean close()
{
if (!isShowing() || mBanner == null || !mIsOpened)
return;
return false;
mIsOpened = false;
setFrameHeight((int) mCloseFrameHeight);
@ -147,6 +147,13 @@ final class BannerController implements View.OnClickListener
if (mTitle != null)
mTitle.setMaxLines(1);
mFrame.setOnClickListener(null);
return true;
}
int getLastBannerHeight()
{
return mFrame.getHeight();
}
private void setFrameHeight(int height)

View file

@ -8,7 +8,6 @@ import android.support.annotation.Nullable;
import android.support.v4.view.GestureDetectorCompat;
import android.support.v7.widget.Toolbar;
import android.util.DisplayMetrics;
import android.util.Log;
import android.view.GestureDetector;
import android.view.MotionEvent;
import android.view.View;

View file

@ -168,6 +168,9 @@ public class PlacePageView extends RelativeLayout
@Nullable
BannerController mBannerController;
@Nullable
View mHeightCompensationView;
// Animations
private BaseShadowController mShadowController;
private BasePlacePageAnimationController mAnimationController;
@ -332,6 +335,8 @@ public class PlacePageView extends RelativeLayout
ViewGroup ppButtons = (ViewGroup) findViewById(R.id.pp__buttons);
mHeightCompensationView = findViewById(R.id.pp__height_compensation);
// TODO: remove this after booking_api.cpp will be done
mHotelMore = findViewById(R.id.ll__more);
mHotelMore.setOnClickListener(this);
@ -797,12 +802,25 @@ public class PlacePageView extends RelativeLayout
if (state == State.HIDDEN)
clearBookmarkWebView();
int heightCompensation = 0;
if (mBannerController != null)
{
if ((state == State.HIDDEN || state == State.PREVIEW) && !UiUtils.isLandscape(getContext()))
mBannerController.close();
{
if (mBannerController.close())
heightCompensation = mBannerController.getLastBannerHeight();
}
else
{
mBannerController.open();
}
}
if (mHeightCompensationView != null)
{
ViewGroup.LayoutParams lp = mHeightCompensationView.getLayoutParams();
lp.height = heightCompensation;
mHeightCompensationView.setLayoutParams(lp);
}
if (mMapObject != null)