摘要:
package com.example.commonadaptertest;import android.util.SparseArray;import android.view.View;public class CommonViewHolder extends SparseArray{ /... 阅读全文
摘要:
原理:canvas画上背景加文字,再画上遮罩层,通过paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.DST_OUT)); 用户点击滑动后清除遮罩层。核心就是前面那句话。package com.example.customshapede... 阅读全文
摘要:
package com.example.customshapedemo;import android.content.Context;import android.content.res.TypedArray;import android.graphics.Bitmap;import android... 阅读全文
摘要:
参考自:http://blog.csdn.net/lmj623565791/article/details/24555655package com.example.customshapedemo;import android.content.Context;import android.conten... 阅读全文
摘要:
项目结构:package com.example.mvpdemo.view;/** * 基本的页面操作 * */public interface IBaseView { //Toast形式提示 public void showMsg(String msg); //加载提示框... 阅读全文
摘要:
有两种方法: 1).第一次点击的时候标记一下状态,提示再按一次退出,然后开始计时,如果超过3秒没有再次按返回,一切状态归零,反之,如果3秒内再次按返回键则进行退出。 boolean isExit = false; int time = 0; @Override public... 阅读全文
摘要:
package com.example.lockscreenlistenerdemo;public interface LockScreenListener { String Tag="LockScreenListener"; public void onScreenOn(); p... 阅读全文
摘要:
1.自启动需要获取自启动权限: 这个权限在4.0以后必须需要。否则无法获取到广播。然后我们在广播中获取这个通知,然后进行相应的操作: 1 package com.example.com.mac.bootdeme; 2 3 import android.app.Service; 4 import a... 阅读全文
摘要:
package com.example.crashcatch;import java.io.File;import java.io.IOException;import java.lang.Thread.UncaughtExceptionHandler;import java.lang.reflec... 阅读全文
摘要:
概况资料来源http://cubiq.org/iscroll-4http://www.cnblogs.com/wanghun/archive/2012/10/17/2727416.htmlhttp://qbaty.iteye.com/blog/1221061iScroll基本信息官网:http://... 阅读全文