/**
* The {@code mRounded} drawable is just the end state of the {@code mStaticToDynamic}
* {@link AnimatedVectorDrawable}.
* The {@code mStatic} drawable is the end state of the {@code mDynamicToStatic}
* {@link AnimatedVectorDrawable}. <br>
*
*/
public MovableMarker(Context context, boolean staticForm, MarkerGson.Marker marker) {
super(context);
mRounded = (AnimatedVectorDrawable) context.getDrawable(R.drawable.avd_marker_rounded);
mStatic = context.getDrawable(R.drawable.vd_marker_location_rounded);
mStaticToDynamic = (AnimatedVectorDrawable) context.getDrawable(R.drawable.avd_marker_location_rounded);
mDynamicToStatic = (AnimatedVectorDrawable) context.getDrawable(R.drawable.avd_marker_rounded_location);
/* Keep a reference on the model object */
mMarker = marker;
/* Init the drawable */
if (staticForm) {
initStatic();
} else {
initRounded();
}
}
MovableMarker.java 文件源码
java
阅读 27
收藏 0
点赞 0
评论 0
项目:TrekAdvisor
作者:
评论列表
文章目录