热门标签 | HotTags
当前位置:  开发笔记 > 前端 > 正文

Android常用开源项目(二十七)

android非侵入式弹窗(仿bottomSheet)首先看效果图仿地图弹窗当然了这个高度和宽度是可控的。想详细修改的话去代码

android非侵入式弹窗(仿bottomSheet)

首先看效果图

android非侵入式弹窗(仿bottomSheet)

仿地图弹窗

当然了这个高度和宽度是可控的。想详细修改的话去代码里面修改吧!


使用方法

BouncingMenu.makeMenu(findViewById(R.id.rl), R.layout.layout_rv_sweet, adapter).show();

是的,就是这一行代码。只需要传入view,布局id,以及adapter(这里使用的是recycleview.Adapter)。想修改其他的话直接去修改代码吧。

具体实现
  • 首先是activity的布局,很简单,就是放了各种ImageView,然后上面放了个searchView(纯粹为了增加样式,囧,这个不重要)


弹出视图
  1. RecycleView部分。从上往下的动画效果使用的是LayoutAnimation.

    布局:

2. BouncingMenu(弹出的主视图)

public class BouncingMenu {

private final ViewGroup mParentViewGroup;

private View rootView;

private final BouncingView boucingView;

private final RecyclerView recycleView;

private RecyclerView.Adapter adapter;

private int screenWidht;

private int screenHeight;

/**

* @param resId 布局资源id

* @param adapter

*/

public BouncingMenu(View view, int resId, RecyclerView.Adapter adapter) {

this.adapter = adapter;

//不断地往上追溯找到 系统id为content的帧布局,添加进去.这里就是利用了这个。

// @android:id/content 就是锚点view

mParentViewGroup = findRootParent(view);

//渲染

rootView = LayoutInflater.from(view.getContext()).inflate(resId, null, false);

//拿到高度,然后把rootview的高度设置为0

Logger.i("视图的跟布局是" + rootView);

boucingView = (BouncingView) rootView.findViewById(R.id.sv);

boucingView.setAnimationListener(new MyAnimationListener());

recycleView = (RecyclerView) rootView.findViewById(R.id.rv);

recycleView.setAnimation(AnimationUtils.loadAnimation(view.getContext(), R.anim.rv_layout_animation));

recycleView.setLayoutManager(new LinearLayoutManager(view.getContext()));

getScreentWight(view.getContext());

}

private ViewGroup findRootParent(View view) {

do {

//判断是帧布局

if (view instanceof FrameLayout) {

if (view.getId() == android.R.id.content) {

//判断布局id为content

return (ViewGroup) view;

}

}

//没找到 ,就不断的往上找

if (view != null) {

ViewParent parent = view.getParent();

//如果父布局是view的话往上继续找

view = parent instanceof View ? (View) parent : null;

}

} while (view != null);

return null;

}

public static BouncingMenu makeMenu(View view, int resId, RecyclerView.Adapter adapter) {

return new BouncingMenu(view, resId, adapter);

}

/**

* 显示

*

* @return

*/

@TargetApi(Build.VERSION_CODES.JELLY_BEAN)

public BouncingMenu show() {

//显示,往帧布局里面addView(xxxView)

if (rootView.getParent() != null) {

//防止已经show了再次show

mParentViewGroup.removeView(rootView);

}

FrameLayout.LayoutParams params = new FrameLayout.LayoutParams(FrameLayout.LayoutParams.MATCH_PARENT, FrameLayout.LayoutParams.MATCH_PARENT);

rootView.setLayoutParams(params);

mParentViewGroup.addView(rootView);

boucingView.show();

return this;

}

/**

* 关闭

*/

public void dissmiss() {

//属性动画实现消失

ObjectAnimator animator = ObjectAnimator.ofFloat(rootView, "translationY", 0, rootView.getHeight());

animator.setDuration(1000);

animator.addListener(new AnimatorListenerAdapter() {

@Override

public void onAnimationEnd(Animator animation) {

//动画结束

super.onAnimationEnd(animation);

mParentViewGroup.removeView(rootView);

rootView = null;

}

});

animator.start();

}

private class MyAnimationListener implements BouncingView.AnimationListener {

@Override

public void onShowContent() {

recycleView.setVisibility(View.VISIBLE);

recycleView.setAdapter(adapter);

recycleView.scheduleLayoutAnimation();

}

}

private void getScreentWight(Context context) {

WindowManager wm = (WindowManager) context

.getSystemService(Context.WINDOW_SERVICE);

screenWidht = wm.getDefaultDisplay().getWidth();

screenHeight = wm.getDefaultDisplay().getHeight();

}

}

2. BouncingView(就是主视图上面弹动的那一部分,这里做成了一个自定义view)

public class BouncingView extends View {

private Paint mPaint;

private int mArcHeight;//当前弧度

private int mMaxArcHeight;//最高弧度

private Status mStatus = Status.NONE;

private Path mPath = new Path();

private AnimationListener animationListener;

private enum Status {

NONE,

STATUS_SMOOTH_UP,

STATUS_DOWN

}

public BouncingView(Context context) {

super(context);

init();

}

public BouncingView(Context context, AttributeSet attrs) {

super(context, attrs);

init();

}

private void init() {

mPaint = new Paint();

mPaint.setAntiAlias(true);

mPaint.setStyle(Paint.Style.FILL);

mPaint.setColor(getResources().getColor(android.R.color.white));

mMaxArcHeight = getResources().getDimensionPixelSize(R.dimen.arc_max_height);

}

//绘制贝塞尔曲线

@Override

protected void onDraw(Canvas canvas) {

super.onDraw(canvas);

int currentPointY = 0;

//判断当前状态

switch (mStatus) {

case NONE:

currentPointY = 0;

break;

case STATUS_SMOOTH_UP://往上走

//currentPointY 的值 跟mArcHeight变化率是一样的

//getHeight()~0 (自定义控件最上面是0) 跟mArcHeight:0~mMaxArcHeight

currentPointY = (int) (getHeight() * (1 - (float) mArcHeight / mMaxArcHeight) + mMaxArcHeight);

break;

case STATUS_DOWN://往下走

currentPointY = mMaxArcHeight;

break;

}

mPath.reset();

//先落笔到左上角

mPath.moveTo(0, currentPointY);

//画上面的线二阶贝塞尔曲线 ,需要起始点 终点,跟拐点。起点就是(0,currentPotintY),拐点就是最中间(getWidth()/2,)

mPath.quadTo(getWidth() / 2, currentPointY - mArcHeight, getWidth(), currentPointY);

//右边线

mPath.lineTo(getWidth(), getHeight());

//最下面的直线

mPath.lineTo(0, getHeight());

//自动画最后一条线

mPath.close();

canvas.drawPath(mPath, mPaint);

}

public void show() {

if (animationListener != null) {

this.postDelayed(new Runnable() {

@Override

public void run() {

//延迟显示数据

animationListener.onShowContent();

}

}, 600);

}

//不短的控制mArcHeight的高度

mStatus = Status.STATUS_SMOOTH_UP;

ValueAnimator valueAnimator = ValueAnimator.ofInt(0, mMaxArcHeight);

valueAnimator.setDuration(800);

valueAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {

@Override

public void onAnimationUpdate(ValueAnimator animation) {

mArcHeight = (int) animation.getAnimatedValue();

if (mArcHeight == mMaxArcHeight) {

//出现谈一下动画

bounce();

}

//不断的刷新调用ondraw方法

invalidate();

}

});

valueAnimator.start();

}

/**

* 回弹动画

*/

private void bounce() {

mStatus = Status.STATUS_DOWN;

ValueAnimator valueAnimator = ValueAnimator.ofInt(mMaxArcHeight, 0);

valueAnimator.setDuration(800);

valueAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {

@Override

public void onAnimationUpdate(ValueAnimator animation) {

mArcHeight = (int) animation.getAnimatedValue();

//不断的刷新调用ondraw方法

invalidate();

}

});

valueAnimator.start();

}

public void setAnimationListener(AnimationListener listener) {

this.animatiOnListener= listener;

}

public interface AnimationListener {

void onShowContent();

}


github:https://github.com/Xiemarc/DesignPatterns


推荐阅读
  • Android 九宫格布局详解及实现:人人网应用示例
    本文深入探讨了人人网Android应用中独特的九宫格布局设计,解析其背后的GridView实现原理,并提供详细的代码示例。这种布局方式不仅美观大方,而且在现代Android应用中较为少见,值得开发者借鉴。 ... [详细]
  • 深入解析Android自定义View面试题
    本文探讨了Android Launcher开发中自定义View的重要性,并通过一道经典的面试题,帮助开发者更好地理解自定义View的实现细节。文章不仅涵盖了基础知识,还提供了实际操作建议。 ... [详细]
  • 优化ListView性能
    本文深入探讨了如何通过多种技术手段优化ListView的性能,包括视图复用、ViewHolder模式、分批加载数据、图片优化及内存管理等。这些方法能够显著提升应用的响应速度和用户体验。 ... [详细]
  • Android 渐变圆环加载控件实现
    本文介绍了如何在 Android 中创建一个自定义的渐变圆环加载控件,该控件已在多个知名应用中使用。我们将详细探讨其工作原理和实现方法。 ... [详细]
  • Android LED 数字字体的应用与实现
    本文介绍了一种适用于 Android 应用的 LED 数字字体(digital font),并详细描述了其在 UI 设计中的应用场景及其实现方法。这种字体常用于视频、广告倒计时等场景,能够增强视觉效果。 ... [详细]
  • 本章将深入探讨移动 UI 设计的核心原则,帮助开发者构建简洁、高效且用户友好的界面。通过学习设计规则和用户体验优化技巧,您将能够创建出既美观又实用的移动应用。 ... [详细]
  • RecyclerView初步学习(一)
    RecyclerView初步学习(一)ReCyclerView提供了一种插件式的编程模式,除了提供ViewHolder缓存模式,还可以自定义动画,分割符,布局样式,相比于传统的ListVi ... [详细]
  • 2023年京东Android面试真题解析与经验分享
    本文由一位拥有6年Android开发经验的工程师撰写,详细解析了京东面试中常见的技术问题。涵盖引用传递、Handler机制、ListView优化、多线程控制及ANR处理等核心知识点。 ... [详细]
  • TCP长连接设备管理平台:架构与功能概览
    本文介绍了基于TCP长连接的设备管理平台的设计理念、技术选型及主要功能模块。最初,项目旨在实现简单的协议测试,但随着需求扩展,逐步演变为一个完整的前后端分离系统。 ... [详细]
  • 本文介绍了ArcXML配置文件的分类及其在不同服务中的应用,详细解释了地图配置文件的结构和功能,包括其在Image Service、Feature Service以及ArcMap Server中的使用方法。 ... [详细]
  • 在使用高德地图内置导航功能时遇到AMapNavi组件出现空指针异常,经过多次排查发现问题是由于so库的兼容性引起的。本文将详细介绍如何通过调整项目配置来解决这一问题。 ... [详细]
  • 微信小程序中实现位置获取的全面指南
    本文详细介绍了如何在微信小程序中实现地理位置的获取,包括通过微信官方API和腾讯地图API两种方式。文中不仅涵盖了必要的准备工作,如申请开发者密钥、下载并配置SDK等,还提供了处理用户授权及位置信息获取的具体代码示例。 ... [详细]
  • 导航栏样式练习:项目实例解析
    本文详细介绍了如何创建一个具有动态效果的导航栏,包括HTML、CSS和JavaScript代码的实现,并附有详细的说明和效果图。 ... [详细]
  • 本文介绍了在使用Visual Studio 2015进行项目开发时,遇到类向导弹出“异常来自 HRESULT:0x8CE0000B”错误的解决方案。通过具体步骤和实践经验,帮助开发者快速排查并解决问题。 ... [详细]
  • C语言实现推箱子游戏的完整代码
    本文详细介绍了如何使用C语言在Linux环境下实现一个简单的推箱子游戏,包括游戏的基本规则、地图设计及代码实现。适合C语言初学者学习。 ... [详细]
author-avatar
董雅淑_420
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有