Android快速开发整理(库、插件,androidstudio移动开发教程

本文列举了一系列适用于Android开发的库、插件和工具,包括DialogPlus、MaterialDateTimePicker、FloatingActionButton等组件,以及Android Studio插件如GsonFormat、Android Methods Count等。此外,还介绍了Android开发常用的在线文档、网站和平台,如GitHub、StackOverflow、CSDN等,以及融云、微信开放平台等即时通讯和API服务。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

  • GitHub:https://github.com/GrenderG/Toasty

DialogPlus(各种样式的Dialog)

  • implementation 'com.orhanobut:dialogplus:1.11@aar’

  • GitHub:https://github.com/orhanobut/dialogplus

MaterialDateTimePicker

  • implementation 'com.wdullaer:materialdatetimepicker:4.2.3’

  • GitHub:https://github.com/wdullaer/MaterialDateTimePicker

FloatingActionButton

  • implementation 'com.github.clans:fab:1.6.4’

  • GitHub:https://github.com/Clans/FloatingActionButton

CityPicker

  • implementation 'liji.library.dev:citypickerview:5.1.0’

  • GitHub:https://github.com/crazyandcoder/citypicker

VerticalTabLayout

  • implementation 'q.rorbin:VerticalTabLayout:1.2.5’

  • GitHub:https://github.com/qstumn/VerticalTabLayout

SmartRefreshLayout(下拉刷新框架)

  • implementation 'com.scwang.smartrefresh:SmartRefreshLayout:1.1.0-alpha-21’

  • GitHub:https://github.com/scwang90/SmartRefreshLayout

AgentWeb(WebView框架)

  • api 'com.just.agentweb:agentweb:4.1.2’

  • GitHub:https://github.com/Justson/AgentWeb

FragmentRigger(Fragment管理框架)

  • 接入引导:https://github.com/JingYeoh/FragmentRigger/wiki/%E9%A6%96%E9%A1%B5

  • GitHub:https://github.com/JingYeoh/FragmentRigger

GSYVideoPlayer(视频播放器)

  • implementation 'com.shuyu:GSYVideoPlayer:7.1.6’

  • GitHub:https://github.com/CarGuo/GSYVideoPlayer

SwipeBackLayout(滑动返回)

  • implementation 'me.imid.swipebacklayout.lib:library:1.1.0’

  • GitHub:https://github.com/ikew0ng/SwipeBackLayout

BGASwipeBackLayout-Android

  • implementation 'cn.bingoogolapple:bga-swipebacklayout:latestVersion@aar’

  • GitHub:https://github.com/bingoogolapple/BGASwipeBackLayout-Android

recyclerview-animators(recyclerview动画)

  • implementation 'jp.wasabeef:recyclerview-animators:3.0.0’

  • GitHub:https://github.com/wasabeef/recyclerview-animators

XPopup(各种弹窗)

  • implementation 'com.lxj:xpopup:2.1.4’

  • GitHub:https://github.com/li-xiaojun/XPopup

FlowLayout(流式布局)

  • implementation 'com.hyman:flowlayout-lib:1.1.2’

  • GitHub:https://github.com/hongyangAndroid/FlowLayout

Switcher(切换按钮)

  • implementation 'com.bitvale:switcher:1.1.0’

  • GitHub:https://github.com/bitvale/Switcher

EasyFloat(悬浮窗框架)

  • implementation 'com.github.princekin-f:EasyFloat:1.3.4’

  • GitHub:https://github.com/princekin-f/EasyFloat

GuideView(新手引导库)

  • implementation 'com.binioter:guideview:1.0.0’

  • GitHub:https://github.com/binIoter/GuideView

StatusBarUtil(状态栏工具类)

  • implementation 'com.jaeger.statusbarutil:library:1.5.1’

  • GitHub:https://github.com/laobie/StatusBarUtil

ImmersionBar(状态栏工具类)

  • implementation 'com.gyf.immersionbar:immersionbar:3.0.0’

  • GitHub:https://github.com/gyf-dev/ImmersionBar

三、各种好用的插件

===================================================================

安装方法
可能有的插件搜索不到,直接点击Search in repositories

这里写图片描述

点击install开始安装,安转成功之后会提示restart重启as,重启就好了。

GsonFormat

  • 快速将json字符串转换成一个Java Bean

  • 快捷键Alt+S

Android ButterKnife Zelezny

  • 配合ButterKnife快速生成注解

  • 光标放在布局文件ID上(如R.layut.activity_main),Ctrl+Shift+B

Android Methods Count

  • 可查看依赖库中的方法数

Lifecycle Sorter

  • 对Activity或者fragment的生命周期方法进行先后排序

  • Ctrl + alt + K

JsonOnlineViewer

  • 直接在as中请求接口,方便调试

genymotion

  • 超快超好用的android模拟器

LeakCanary

  • 检测内存泄露

  • github:https://github.com/square/leakcanary

Dart

  • Dart开发插件

Flutter

  • Flutter开发插件

Json To Kotlin Class

  • json转kotlin bean对象

Android Drawable Preview

  • 可对drawable及mipmap下的资源文件预览

四、各种常用的网站

===================================================================

AndroidDevTools(各种android相关工具下载)

  • http://www.androiddevtools.cn/index.html

在线文档-JDK

  • http://tool.oschina.net/apidocs/apidoc?api=jdk_7u4

在线文档-Android

  • https://developer.android.google.cn/develop/index.html

在线文档-Kotlin

  • https://github.com/wangjiegulu/kotlin-for-android-developers-zh/blob/master/SUMMARY.md

在线文档-Glide

  • https://muyangmin.github.io/glide-docs-cn/

在线文档-Flutter

  • https://flutterchina.club/widgets-intro/

Material Design(参考文档)

  • https://materialdoc.cn/components/autocomplete/

GitHub

  • https://github.com/

Font Awesome Icons

  • http://fontawesome.io/icons/

Json在线解析

  • http://www.sojson.com/

API文档管理

  • https://apiview.com/

stackoverflow(IT技术问答网站)

  • https://stackoverflow.com/

CSDN全球最大中文IT社区

  • http://www.csdn.net/

简书

  • http://www.jianshu.com/

玩安卓

  • https://www.wanandroid.com/

HenCoder

  • https://hencoder.com/

Android开发技术周报

  • http://androidweekly.cn/

ProcessOn免费在线作图,实时协作

  • https://www.processon.com/

阿里巴巴矢量图标库

  • http://www.iconfont.cn/

各种在线文档和工具(开源中国社区)

  • http://tool.oschina.net/

Mob开放平台(天气、短信、分享等)

  • http://www.mob.com/

聚合数据(各种开放API)

  • https://www.juhe.cn/

融云(即时通讯)

  • http://www.rongcloud.cn/

蚂蚁金服开放平台(支付宝)

  • https://doc.open.alipay.com/

阿里移动热修复

  • https://help.aliyun.com/product/51340.html

阿里移动推送

  • https://www.aliyun.com/product/cps

腾讯开放平台

  • http://wiki.open.qq.com/wiki/首页

微信开放平台

  • https://open.weixin.qq.com/

腾讯信鸽推送

  • https://xg.qq.com/docs/android_access/jcenter.html

腾讯Bugly

  • https://bugly.qq.com/v2/

腾讯地图

  • https://lbs.qq.com/

百度地图

  • http://lbsyun.baidu.com/

w3school(HTML)

  • http://www.w3school.com.cn/tags/index.asp

Bootstrap*组件

  • http://v3.bootcss.com/components/

友盟(推送统计)

  • http://www.umeng.com/

总结

本文讲解了我对Android开发现状的一些看法,也许有些人会觉得我的观点不对,但我认为没有绝对的对与错,一切交给时间去证明吧!愿与各位坚守的同胞们互相学习,共同进步!

在这里我也分享一份自己收录整理的**Android学习PDF+架构视频+面试文档+源码笔记,还有高级架构技术进阶脑图、Android开发面试专题资料,高级进阶架构资料**帮助大家学习提升进阶,也节省大家在网上搜索资料的时间来学习,也可以分享给身边好友一起学习

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值