一款安卓工具集獻給初入安卓開發的你
- 前言:
- VastUtils介紹
- VastTools
- VastAdapter
- VastNetStateLayout
- VastSwipeListView
- 其他工具
- ShapeButton
- StarBar
- 專案地址
- VastUtils
- ShapeButton
- StarBar
前言:
📢📢📢📣📣📣
初入安卓開發,想必有些功能是我們經常需要用到的,例如獲取螢屏引數,列印日志,又或者是配接器,這些代碼常用有時卻需要我們重復造輪子,為了方便大家開發,我撰寫了一套工具集希望能夠加快你的軟體開發,
VastUtils
一款幫助你開發的安卓工具集
VastUtils介紹
VastTools
包含了我們常用的一些必要功能
💫 特性
- 👍 AppInfoUtils 支持獲取
應用程式名當前版本名應用版本號應用包名應用圖示應用Debug狀態 - 👍 DateUtils 支持獲取日期等相關資訊,詳情可以點擊這里
- 👍 DensityUtils 提供了dp px sp之間的相互轉換,同時也支持
56f.sp - 👍 IntentUtils 提供了常用的Intent,例如
撥打電話打開網頁 - 👍 LogUtils 提供了日志列印工具,詳情可以點擊這里
- 👍 MergeBitmapUtils 提供了BitMap合并
- 👍 MsgWindowUtils 提供了三種常用訊息提示框
Short ToastLong ToastDialog - 👍 ScreenSizeUtils 提供了螢屏尺寸獲取方法,螢屏長度,螢屏寬度,是否是全面屏
- 👍 SystemUtils 提供了獲取系統資訊的方法
😁 使用
implementation 'io.github.sakurajimamaii:VastTools:0.0.4'
VastAdapter
幫助你快速的構建適合RecyclerView的Adapter,詳情可以點擊這里,以下為示例:
public class LocalMusicAdapter extends BaseVastBindingAdapter<LocalMusicBean> {
public LocalMusicAdapter(@NonNull List<LocalMusicBean> items) {
super(items);
}
@Override
public int setVariableId() {
return BR.item;
}
}
對你沒看錯,就是如此簡單,
😁 使用
implementation 'io.github.sakurajimamaii:VastAdapter:0.0.2'
VastNetStateLayout
VastNatStateLayout繼承自framelayout,你可以自定義下列狀態頁面: loading,error,ok,empty data,詳情可以點擊這里,以下為演示圖:
😁 使用
implementation 'io.github.sakurajimamaii:VastNetStateLayout:0.0.2'
VastSwipeListView
一款支持自定義的仿QQ串列滑動控制元件,詳情可以點擊這里,以下為演示圖:
😁 使用
implementation 'io.github.sakurajimamaii:VastSwipeListView:0.0.1'
其他工具
ShapeButton
一款支持自定義的安卓按鈕控制元件,詳情可以點擊這里,以下為演示圖:
😁 使用
在專案根目錄下的build.gradle添加
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
添加依賴
dependencies {
implementation 'com.github.SakurajimaMaii:ShapeButton:0.0.5'
}
StarBar
一款自定義安卓星星評分控制元件,詳情可以點擊這里,以下為演示圖:
😁 使用
在專案根目錄下的build.gradle添加
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
添加依賴
dependencies {
implementation 'com.github.SakurajimaMaii:StarBar:dev-2.0.0'
}
專案地址
歡迎Star,fork,并在issue提出改進意見
VastUtils
Github
VastUtils 源地址
Gitee
VastUtils 加速地址
ShapeButton
Github
ShapeButton 源地址
Gitee
ShapeButton 加速地址
StarBar
Github
StarBar 原專案地址
Gitee
StarBar 加速地址
轉載請註明出處,本文鏈接:https://www.uj5u.com/yidong/380201.html
標籤:其他
上一篇:spring cloud spring boot mybatis構建java版 分布式微服務 b2b2c o2o電子商務云商平臺
