implementation 'com.ayvytr:EasyAndroid:2.3.0'
EasyAndroid | EasyKotlin |
---|---|
AppInfo AppInfoCache Pachages | 废弃,未解决占用内存过多的问题 |
RegexConstant RegexTool | 废弃,某些正则方法测试不全等问题,正则匹配不能覆盖所有情况 |
Sp SpManager | 废弃,内存泄漏 |
BarTool | StatusBar.kt Context.getStatusBarHeight 专门提供了显示隐藏状态栏,获取状态栏高度,显示隐藏标题栏方法 |
ClipBoardTool | Clipboard.kt |
DensityTool | Context.kt dp2px, px2dp作为Context类扩展方法提供 |
IntentTool | 废弃 |
Managers | Manager.kt |
Res ResCompat ResTool | Res.kt 作为Context扩展方法提供 |
ScreenTool | Screen.kt 作为Context和Activity扩展方法提供 |
ToastTool | Toast.kt |
BitmapTool | Bitmap.kt |
Convert | 弃用,Kotlin提供了toString toInt等方法 |
FileTool | 弃用 |
TextTool | 弃用 |
BaseActivity | 弃用继承取代AppCompatActivity的方法,提供了Activity扩展方法 |
ViewTool | View.kt 提供了View显示隐藏等多个扩展方法 |
Easy | 弃用 |
AuthEditText等自定义View(点击跳转到自定义View库) | 不再提供 |
(有关Context类: 先在 'Application.onCreate()' 中调用 'Easy.getDefault().init(this);')
直接使用
2.2.0 添加了ProgressWebView,添加了进度条加载功能,并专门帮你搞定WebView资源回收问题;此版本删除了BaseEasyActivity,原BaseEasyActivity功能全部移到BaseActivity,尽可能减少了Activity继承层级,并且添加了是否禁用sp字体随系统缩放的功能
SpManager管理Sp,Sp封装了SharedPreference各种操作,精简了SharedPreferences操作(也有SpTest类进行了测试,保证通过测试才发布呦!)
重构了这个控件,修复了布局文件中看不到预览,没有自定义属性,以及不合理地重写View方法的问题)
- Colors 类,提供了超过1000种颜色,资源中同时也提供了这些颜色,太(henhao)多(hen)啦(qiangda)!
- Packages类和AppInfo Bean类,获取所有安装的应用更方便!
- BitmapTool类,提供了转换,缩放,旋转Bitmap和Drawable的众多方法!
- 修正了bintrayUpload过程中的某些错误.
SpManager管理Sp,Sp封装了SharedPreferences操作,可以直接使用Sp管理SharedPreference实例,不过依然推荐使用SpManager来
产生Sp实例(已在SpTest类中进行了测试,应该没bug了)
用法:
//获取默认的Sp实例
Sp defaultSp = SpManager.getDefault(context).getSp();
//获取指定名称的Sp实例
Sp yourSp = SpManager.getDefault(context).getSp("your_sp_name");
//使用 获取值
int i = yourSp.getInt("key");
i = yourSp.getInt("key", 10);
//设置值
yourSp.putInt("key", 111).putInt("key2", 222);
//获取所有值
Map<String, ?> all = yourSp.getAll();
//删除值
yourSp.remove("key");
//删除默认的sp文件
SpManager.getDefault(context).deleteSp();
//删除指定名称的sp文件
SpManager.getDefault(context).deleteSp("your_sp_name");
从 -300~300 dp 和 sp 资源
有关TextView等View的Style
CenterGravityTextView
LeftCenterGravityTextView
RightCenterGravityTextView
SeekBarPressure: 双Thumb的SeekBar
FlowLayout
AuthEditText
PopupWindows 浏览 Readme->
AlphaPopupWindow
BasePopupWindow
ToggleSoftInputPopupWindow
TopPopupWindow
BitmapTool 转换,缩放,旋转Bitmap和Drawable等操作。
toBitmap
toBitmap2
toDrawable
toDrawable
toByteArray
zoom
zoom2Drawable
rotate
rotate2Drawable
Colors 提供了超过1000种颜色,以及获取红绿蓝等方法。
alpha
argb
b
g
r
rgb
Convert 类型转换类,仿照了C#的Convert类(对这个类情(zhen)有(de)独(hao)钟(yong))
提供了大部分基本类型到bool,int,byte的转换,以及isZero方法
toBool
izZero
toInt
toByte
EncodeTool 编码解码相关操作类
urlEncode
urlDecode
base64Encode
base64Decode
base64UrlSafeEncode
htmlEncode
htmlDecode
EncryptTool 加密解密相关操作类
encryptMD2ToString
encryptMD2
encryptMD5ToString
encryptMD5
encryptSHA1ToString
encryptSHA1
encryptSHA224ToString
encryptSHA224
encryptSHA256ToString
encryptSHA256
encryptSHA384ToString
encryptSHA384
encryptSHA512ToString
encryptSHA512
hashTemplate
encryptHmacMD5ToString
encryptHmacMD5
encryptHmacSHA1ToString
encryptHmacSHA1
encryptHmacSHA224ToString
encryptHmacSHA224
encryptHmacSHA256ToString
encryptHmacSHA256
encryptHmacSHA384ToString
encryptHmacSHA384
encryptHmacSHA512ToString
encryptHmacSHA512
hmacTemplate
encryptDES2Base64
encryptDES2HexString
encryptDES
decryptBase64DES
decryptHexStringDES
decryptDES
encrypt3DES2Base64
encrypt3DES2HexString
encrypt3DES
decryptBase64_3DES
decryptHexString3DES
decrypt3DES
encryptAES2Base64
encryptAES2HexString
encryptAES
decryptBase64AES
decryptHexStringAES
decryptAES
desTemplate
bytes2HexString
hexString2Bytes
hex2Dec
base64Encode
base64Decode
FileTool 文件操作类,判断是不是文件/目录,是不是存在,重命名,创建文件/目录,列出文件/目录,
获取文件名/文件标题(不包含扩展名), 有没有扩展名,读/写文件等方法
createDir
createFile
fromName
getByteArray
getExtension
getExtension
getLastModified
getLowerName
getName
getNamesExtensionsList
getNamesList
getTitle
hasExtension
isDir
isExists
isFile
isTyped
listAll
listAllDirs
listAllDirsDislikeNames
listAllDirsDislikeNamesNoCase
listAllDirsLikeNames
listAllDirsLikeNamesNoCase
listAllDirsWithNames
listAllDirsWithNamesNoCase
listAllDirsWithoutNames
listAllDirsWithoutNamesNoCase
listAllDislikeNames
listAllDislikeNamesNoCase
listAllLikeNames
listAllLikeNamesNoCase
listAllWithExtension
listAllWithNames
listAllWithNamesNoCase
listAllWithoutExtension
listAllWithoutNames
listAllWithoutNamesNoCase
listDirs
listDirsDislikeNames
listDirsDislikeNamesNoCase
listDirsLikeNames
listDirsLikeNamesNoCase
listDirsWithNames
listDirsWithNamesNoCase
listDirsWithoutNames
listDirsWithoutNamesNoCase
listFiles
listFilesDislikeNames
listFilesDislikeNamesNoCase
listFilesLikeNames
listFilesLikeNamesNoCase
listFilesNames
listFilesPaths
listFilesWithExtension
listFilesWithNames
listFilesWithNamesNoCase
listFilesWithoutExtension
listFilesWithoutNames
listFilesWithoutNamesNoCase
of
open
read
readFile
rename
toFileNames
toFilePaths
write
writeFile
RegexTool 正则工具类,包括验证手机号,邮箱,身份证号码等
isMobileSimple
isMobileExact
isTel
isIDCard15
isIDCard18
isEmail
isURL
isZh
isUsername
isDate
isIP
isMatch
getMatches
getSplits
getReplaceFirst
getReplaceAll
TextTool 提供了众多的字符串操作功能,包括判空,是不是字符串,分割字符串(会去掉末尾的regex)等功能
isEmpty
isDigit
isNumber
reverse
emptyString
split
isBlank
Easy 这个库的单例入口类, 使用有关Context的类之前,需要初始化这个类
getContext
checkInitState
getDefault
init
release
getClipboardManager
getWindowManager
getKeyguardManager
BarTool StatusBar, ActionBar操作工具类
setColor
setColorForSwipeBack
setColorNoTranslucent
setColorDiff
setTranslucent
setTranslucentForCoordinatorLayout
setTransparent
setTranslucentDiff
setColorForDrawerLayout
setColorNoTranslucentForDrawerLayout
setColorForDrawerLayout
setColorForDrawerLayoutDiff
setTranslucentForDrawerLayout
setTranslucentForDrawerLayoutDiff
setTransparentForImageView
setTranslucentForImageViewInFragment
clearPreviousSetting
addTranslucentView
createStatusBarView
setRootView
setTransparentForWindow
transparentStatusBar
createTranslucentStatusBarView
getStatusBarHeight
calculateStatusColor
setTransparentStatusBar
hideStatusBar
isStatusBarExists
getActionBarHeight
showNotificationBar
hideNotificationBar
invokePanels
ClipboardTool 剪贴板操作类
setText
getText
getText
setUri
getUri
setIntent
getIntent
DensityTool Dp - Px 相互转化类,提供了int,float,double 3种类型的重载方法,尽可能减少外部强制类型转换.
px2dp
dp2px
IntentTool 获取常用的Intent
getInstallAppIntent
getUninstallAppIntent
getLaunchAppIntent
getAppDetailsSettingsIntent
getShareTextIntent
getShareImageIntent
getComponentIntent
getShutdownIntent
getDialIntent
getCallIntent
getSendSmsIntent
getCaptureIntent
ResTool 获取资源中Drawable,String,dimension,color, Configuration.
getDrawable
getString
getDimen
getDimenFloat
getDimenToDp
getDimenFloatToDp
getColor
getConfiguration
ScreenTool 提供了获取屏幕尺寸,宽高,屏幕旋转方向,设置为竖屏,是不是横屏/竖屏,获取屏幕截图(包含/不包含状态栏), 判断是不是锁屏的功能.
getDisplayMetrics
getScreenWidth
getScreenHeight
setLandscape
setPortrait
isLandscape
isPortrait
getScreenRotationAngle
getRotationAngle
captureWithStatusBar
captureWithoutStatusBar
isScreenLock
ToastTool Toast工具类,提供简便的Toast创建和输出功能
make
makeLong
show
showLong
Managers 获取Android管理类实例``
getAccessibilityManager
getAccountManager
getActivityManager
getAlarmManager
getAppOpsManager
getAppWidgetManager
getAudioManager
getBatteryManager
getBluetoothManager
getCameraManager
getCaptioningManager
getCarrierConfigManager
getClipboardManager
getConsumerIrManager
getDisplayManagerCompat
getDownloadManager
getFingerprintManager
getHardwarePropertiesManager
getInputMethodManager
getJobScheduler
getKeyguardManager
getLauncherApps
getLayoutInflater
getLocationManager
getMediaRouter
getMediaSessionManager
getMidiManager
getNfcManager
getNotificationManager
getNsdManager
getPackageManager
getPowerManager
getPrintManager
getRestrictionsManager
getSensorManager
getStorageManage
getTelecomManager
getTelephonyManager
getTextServicesManager
getUiModeManager
getUserManager
getVibrator
getWallpaperManager
getWindowManager
ConvertTest
FileToolTest
TextToolTest
DensityToolTest