记录自己最近在开发中使用的开源库及部分使用方法,链接地址为个人fork后的地址,可以参见原作者仓库。本文将持续更新,大家有什么好用的可以留言,一起交流学习下。
1. android 开发常用工具类
2. 字体图标compile 'net.steamcrafted:materialiconlib:1.0.9'
2.2.xml中使用
注:需要添加命名空间
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/icon"
android:layout_width="24dp"
android:layout_height="24dp"
android:scaleType="center"
app:materialIcon="account"
app:materialIconColor="@color/mainColor"
app:materialIconSize="24dp"/>
示例效果:
3. UI Model
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/gbtn_login"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="25dp"
android:background="@color/mainColor"
android:onClick="LoginClickEvent"
android:text="@string/login_btn"
android:textColor="@color/white"
app:gFont="roboto.ttf"
app:gTouchColor="@color/black_alpha_32"
app:gTouchDurationRate="0.7"
app:gTouchEffect="ripple"/>
同样需要注意添加命名空间。
4. xutils3
5.进度条
6.对话框
7. EventBus
地址:https://github.com/txadf/EventBus
注意:在使用,进行注册订阅时,使用下面的方式,其中“XXX”表示需要订阅的Activity或者Fragment名,避免直接使用“this”:
EventBus.getDefault().register(XXX.this);