当前位置: 编程技术>移动开发
本页文章导读:
▪Graphics-Typefaces Graphics-----Typefaces
1. 用法Paint mPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
Typeface mFace = Typeface.createFromAsset(getContext().getAssets(),
"fonts/samplefont.ttf");
mPaint.setTypeface(mFace.........
▪ 失去应用程序的图标 得到应用程序的图标
private List<RunningAppProcessInfo> process;
private ActivityManager activityMan;
activityMan = (ActivityManager)getSystemService(Context.ACTIVITY_SERVICE);
process = activityMan.getRunningAppProcesses();
private .........
▪ 判断sim卡跟网络状态代码以及回收资源 判断sim卡和网络状态代码以及回收资源
ConnectivityManager mConManager = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE); if (mConManager.getActiveNetworkInfo() != null) { if (!mConM.........
[1]Graphics-Typefaces
来源: 互联网 发布时间: 2014-02-18
Graphics-----Typefaces
1. 用法
1. 用法
Paint mPaint = new Paint(Paint.ANTI_ALIAS_FLAG); Typeface mFace = Typeface.createFromAsset(getContext().getAssets(), "fonts/samplefont.ttf"); mPaint.setTypeface(mFace);
[2] 失去应用程序的图标
来源: 互联网 发布时间: 2014-02-18
得到应用程序的图标
private List<RunningAppProcessInfo> process; private ActivityManager activityMan;
activityMan = (ActivityManager)getSystemService(Context.ACTIVITY_SERVICE); process = activityMan.getRunningAppProcesses();private PackageManager pk; pk = getPackageManager(); .... pk.getApplicationIcon(process.get(i).processName)
[3] 判断sim卡跟网络状态代码以及回收资源
来源: 互联网 发布时间: 2014-02-18
判断sim卡和网络状态代码以及回收资源
ConnectivityManager mConManager = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
if (mConManager.getActiveNetworkInfo() != null) {
if (!mConManager.getActiveNetworkInfo().isAvailable()) {
//添加代码
}
;
}else {
//添加代码
} 需要权限 android.permission.ACCESS_NETWORK_STATE
、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、
TelephonyManager tm = (TelephonyManager) this.getSystemService(TELEPHONY_SERVICE);
if(tm.getSimState()!=tm.SIM_STATE_READY)
{
Toast.makeText(this, "Sim卡未插入或者异常", Toast.LENGTH_SHORT).show();
//添加代码
}
、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、
关闭回收所有资源:
ActivityManager am = (ActivityManager)getSystemService (Context.ACTIVITY_SERVICE);
am.restartPackage(getPackageName());
需要权限 android.permission.RESTART_PACKAGES
ConnectivityManager mConManager = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
if (mConManager.getActiveNetworkInfo() != null) {
if (!mConManager.getActiveNetworkInfo().isAvailable()) {
//添加代码
}
;
}else {
//添加代码
} 需要权限 android.permission.ACCESS_NETWORK_STATE
、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、
TelephonyManager tm = (TelephonyManager) this.getSystemService(TELEPHONY_SERVICE);
if(tm.getSimState()!=tm.SIM_STATE_READY)
{
Toast.makeText(this, "Sim卡未插入或者异常", Toast.LENGTH_SHORT).show();
//添加代码
}
、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、
关闭回收所有资源:
ActivityManager am = (ActivityManager)getSystemService (Context.ACTIVITY_SERVICE);
am.restartPackage(getPackageName());
需要权限 android.permission.RESTART_PACKAGES
最新技术文章: