上一页 1 2 3 4 5 6 7 ··· 15 下一页
摘要: 目录 一:普通的Notification Notification 的基本操作 给 Notification 设置 Action 更新 Notification 取消 Notification 设置 Notification 的通知效果 铃声 震动 呼吸灯 二: 折叠式(4.0以后出来的) 三:悬挂 阅读全文
posted @ 2018-01-03 17:02 Alter 阅读(427) 评论(0) 推荐(0) 编辑
摘要: activity布局 ll_top代表要悬停的部分 这里面我放了 图片和文本 item布局 上面和ll_top一样,下面部分是显示一张大图片 activity 设置addOnScrollListener 是关键 阅读全文
posted @ 2018-01-03 13:54 Alter 阅读(1712) 评论(0) 推荐(0) 编辑
摘要: 很多时候, 在做自动下拉框时,默认点上去时需要显示一组默认的下拉数据。但是默认的AutoCompleteTextView是实现不了的, 因为setThreshold方法最小值是1,就算你设的值为0,也会自动改成1的。 Java代码 /** * <p>Specifies the minimum num 阅读全文
posted @ 2017-08-30 17:10 Alter 阅读(963) 评论(0) 推荐(0) 编辑
摘要: 获得了Root权限后,adb shell进入文件系统,有时仍然不能对系统文件夹进行写操作,典型的如删除/system/app下的Apk, 例如系统报:rm failed for xxx.apk, Read-only file system 只要执行命令:mount -o rw,remount -t 阅读全文
posted @ 2017-08-23 15:32 Alter 阅读(4927) 评论(1) 推荐(1) 编辑
摘要: 问题:Called attach on a child which is not detached: ViewHolder#出现问题的原因 经过google后发现,出现该问题的原因是由于recyclerView自带动画,当动画结束的时候,recyclerView会再次回收item,我们也因此可以重用 阅读全文
posted @ 2017-07-18 13:12 Alter 阅读(2152) 评论(0) 推荐(0) 编辑
摘要: CollapsingToolbarLayout 里: 1 2 app:titleEnabled="true" app:title="Hello" Toolbar 里: 1 app:title="Hi" 来看看效果:Toolbar 1然后我们把 CollapsingToolbarLayout 改一下: 阅读全文
posted @ 2017-07-13 16:00 Alter 阅读(2874) 评论(0) 推荐(0) 编辑
摘要: 我非常喜欢Material Design里折叠工具栏的效果,bilibili Android客户端视频详情页就是采用的这种设计。这篇文章的第二部分我们就通过简单的模仿bilibili视频详情页的实现来了解下CollapsingToolbarLayout的使用。文章的第三部分介绍了Collapsing 阅读全文
posted @ 2017-07-13 13:18 Alter 阅读(1871) 评论(0) 推荐(0) 编辑
摘要: Glide 、 Picasso 、 Fresco 已逐渐成为Android主流的图片加载工具(个人见解,使用Volley、ImageLoader、xUtils的大佬们请勿喷~),在多数Android程序员的印象中,它们只是加载图片和缓存图片的工具,其实它们还有很多强大的功能没有被发掘... 今天,小 阅读全文
posted @ 2017-05-17 14:34 Alter 阅读(12120) 评论(0) 推荐(0) 编辑
摘要: public void initSearchViewActions() { searchView.setMaxWidth(Integer.MAX_VALUE); searchView.onActionViewExpanded(); searchView.setQueryHint(getString( 阅读全文
posted @ 2017-04-28 10:52 Alter 阅读(854) 评论(0) 推荐(0) 编辑
摘要: //耳机插拔发送的广播的action 可以自己取名字。 阅读全文
posted @ 2017-04-19 19:17 Alter 阅读(330) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 15 下一页