08 2017 档案

流式布局---FlowLayout
摘要:以下是对应的xml 以下是MainActivity的全部代码 阅读全文
posted @ 2017-08-25 14:31 萌主不是盟主 阅读(267) 评论(0) 推荐(0)
Android 数据库升级
摘要:数据库升级:v1.0-v2.1从v1.0升级到v2.01,不走oncreate,走onupdategrade直接安装v2.0,走onCreate;v1.0-v3.0:分三种情况1.v1.0升级到v3.0: 不走onCreate,走onUpgrade2.v2.0升级到v3.0:不走onCreate,走onUpgrade3.直接安装v3.0:走onCreate,不走onUpgradepublic c... 阅读全文
posted @ 2017-08-16 14:02 萌主不是盟主 阅读(181) 评论(0) 推荐(0)
自定义圆角矩形 ImageView,可直接在布局中使用
摘要:public class XCRoundRectImageView extends ImageView { private Paint paint; public XCRoundRectImageView(Context context) { this(context,null); } public 阅读全文
posted @ 2017-08-16 09:45 萌主不是盟主 阅读(271) 评论(0) 推荐(0)
封装的获取验证码
摘要:public class CountDownTimerUtils extends CountDownTimer{ private TextView mTextView; public CountDownTimerUtils(TextView textView, long millisInFuture 阅读全文
posted @ 2017-08-16 09:41 萌主不是盟主 阅读(137) 评论(0) 推荐(0)
App上线后,更新apk(包括跳转浏览器,在线更新,强制更新)
摘要:更新的工具类updateUtils: public class UpdateAppUtils { private final String TAG = "UpdateAppUtils"; public static final int CHECK_BY_VERSION_NAME = 1001; pu 阅读全文
posted @ 2017-08-16 09:31 萌主不是盟主 阅读(2121) 评论(0) 推荐(0)