摘要: 1:自定义对话框(lostprotectedActivity)2: 增加一个淡入的动画效果 RelativeLayout rl = (RelativeLayout) findViewById(R.id.splash_rl); AlphaAnimation aa = new AlphaAnimation(0.1f, 1.0f); aa.setDuration(3000); rl.setAnimation(aa);3: PackageManager packageManager;//获取apk的信息 //获取packagemanager的实例 packageMana... 阅读全文
posted @ 2012-07-15 22:19 ligang305 阅读(507) 评论(0) 推荐(0)
摘要: package cn.itcast.mobilesafe.service;import android.content.Context;import android.content.SharedPreferences;import android.content.SharedPreferences.Editor;import android.location.Criteria;import android.location.Location;import android.location.LocationListener;import android.location.LocationMana 阅读全文
posted @ 2012-07-15 17:09 ligang305 阅读(1562) 评论(0) 推荐(0)