AndroidTestCode
用于Android 日常代码测试,效果整理
Update Log:
-
PagerSlidingTabStrip 整理(对之前整理的进一步的调整), Kotlin 版本、Java版本
<declare-styleable name="PagerSlidingTabStrip"> <!-- 指示器颜色 --> <attr name="indicatorColor" format="color" /> <!-- 下划线颜色 --> <attr name="underlineColor" format="color" /> <!-- 分割线颜色 --> <attr name="dividerColor" format="color" /> <!-- 指示器高度 --> <attr name="indicatorHeight" format="dimension" /> <!-- 指示器宽度 ,isFixedIndicatorWidth 为 true 时有效 --> <attr name="indicatorWidth" format="dimension" /> <!-- 是否固定指示器宽度 --> <attr name="isFixedIndicatorWidth" format="boolean" /> <!-- 指示器左右内边距 --> <attr name="indicatorPaddingLeftRight" format="dimension" /> <!-- 下划线高度 --> <attr name="underlineHeight" format="dimension" /> <!-- 分割线内边距 --> <attr name="dividerPadding" format="dimension" /> <!-- 每个 Tab 的 左右内边距 --> <attr name="tabPaddingLeftRight" format="dimension" /> <!-- 滚动偏移值 --> <attr name="scrollOffset" format="dimension" /> <!-- tab 背景 --> <attr name="tabBackground" format="reference" /> <!-- 暂时无用 --> <attr name="shouldExpand" format="boolean" /> <!-- tab 选中文字大小 --> <attr name="tabSelTextSize" format="dimension" /> <!-- tab 默认文字大小 --> <attr name="tabDefTextSize" format="dimension" /> <!-- tab 选中文字颜色 --> <attr name="tabSelTextColor" format="color" /> <!-- tab 默认文字颜色 --> <attr name="tabDefTextColor" format="color" /> </declare-styleable>
-
2018年09月02日
-
2018年08月27日
-
2018年08月24日
-
2018年07月12日
-
2018年07月10日
方式一 , 简单的写了个 xml 布局,然后实现输入效果。 方式二 , 借助系统的 KeyBoardView 定义一个数字键盘。
-
2018年06月21日
-
2018年06月18日
7.0 拍照适配测试 (如需在 library 中使用,可以参考多图选择库)
-
2018年02月26日
-
2018年01月03日
-
2017年12月27日
-
2017年12月11日
-
2017年12月07日
-
2017年12月06日
新增一个 javaLib ,用于测试自定义 ButterKnife
AIDL跨进程通信
代理模式
Notification代理模式实战 -
2017年12月05日
-
2017年12月03日
备忘录模式 - 摘自 Android源码设计模式解析与实战
-
2017年11月30日
带红色 * 号文本(标注必选项)
-
2017年11月29日
观察者模式 - 摘自 Android源码设计模式解析与实战
责任链模式 - 摘自 Android源码设计模式解析与实战
跳转手机百度、高德地图 -
2017年11月28日
-
2017年11月28日
添加设计模式 package
Builder设计模式 - 摘自 Android源码设计模式解析与实战
使用简单的 ImageLoader 测试 开闭原则,单一原则 - 摘自 Android源码设计模式解析与实战
单例模式(Single)测试 - 摘自 Android源码设计模式解析与实战 -
2017年11月21日
新增 NotificationTestActivity
用于 测试 Android 系统 Notification ,以及接收到推送之后,默认调用系统的 震动和提示音 -
2017年11月20日
新增 Kotlin 版本的 SwipeRefreshView
(SwipeRefreshLayout + RecyclerView + BaseRecyclerViewAdapterHelper)