摘要: http://blog.csdn.net/mylzc/article/details/6736988 阅读全文
posted @ 2013-03-28 22:46 灰太狼_lilongmin 阅读(147) 评论(0) 推荐(0) 编辑
摘要: http://www.open-open.com/lib/view/open1339485728006.html 阅读全文
posted @ 2013-03-19 12:47 灰太狼_lilongmin 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 原文地址:http://www.iteye.com/topic/685986 阅读全文
posted @ 2013-02-26 15:37 灰太狼_lilongmin 阅读(92) 评论(0) 推荐(0) 编辑
摘要: http://blog.sina.com.cn/s/blog_61e6b52c0101cgfg.html 阅读全文
posted @ 2013-01-15 14:58 灰太狼_lilongmin 阅读(124) 评论(0) 推荐(0) 编辑
摘要: package com.llm.showpk;import java.util.List;import android.app.Activity;import android.content.pm.PackageInfo;import android.os.Bundle;import andro... 阅读全文
posted @ 2013-01-14 14:09 灰太狼_lilongmin 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 这个可以解压 那些包含子目录的zip文件 /** * 解压缩功能. * 将zipFile文件解压到folderPath目录下. * @throws Exception */ public int upZipFile(File zipFile, String fol... 阅读全文
posted @ 2013-01-07 10:48 灰太狼_lilongmin 阅读(319) 评论(0) 推荐(0) 编辑
摘要: // apk静默安装 private class ApkUtil extends Thread { private boolean mEnable = true; @Override public void run() { ... 阅读全文
posted @ 2013-01-06 12:01 灰太狼_lilongmin 阅读(465) 评论(1) 推荐(0) 编辑
摘要: 如果你想使用ActivityGroup来统一管理Activity的话,当然首先这是一种很好的方法,但是如果你想在ActivityGroup里面拦截返回按键来进行统一管理的话,直接覆写onKeyDown方法是行不通的了哦,但是你可以覆写dispatchKeyEvent方法来实现,例如,现在我点击返回按... 阅读全文
posted @ 2012-12-10 11:34 灰太狼_lilongmin 阅读(361) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2012-11-20 16:24 灰太狼_lilongmin 阅读(2) 评论(0) 推荐(0) 编辑
摘要: Intent intent = new Intent(); intent.putExtra("exit", "exit");//添加参数,这是退出的依据 intent.setClass(MenuActivity.this, loginActivity.class);//跳转到login界面,根据参数退出 intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); //注意本行的FLAG设置,clear所有Activi... 阅读全文
posted @ 2012-09-04 12:40 灰太狼_lilongmin 阅读(132) 评论(0) 推荐(0) 编辑