- 博客(6)
- 资源 (2)
- 收藏
- 关注
转载 简单的点击button事件隐藏软键盘
button.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { InputMethodManager imm = (InputMethodManager) v.getContext() .getSystemService(Context.INPUT_
2013-10-24 15:00:31 519
转载 android 判断SD卡是否存在
/** * 判断sd卡是否存在 * @return */ public static boolean ExistSDCard() { if (android.os.Environment.getExternalStorageState().equals( android.os.Environment.MEDIA_MOUNTED)) { return true;
2013-03-26 13:52:01 446
转载 android 打开GPS
/** * 打卡GPS */ public static void openGPSSettings(Context context) { LocationManager alm = (LocationManager) context .getSystemService(Context.LOCATION_SERVICE); if (alm.isProviderEnabled
2013-03-26 10:56:59 768
转载 android 调用其他程序
目前有两种方法 Intent intent = new Intent(); intent.setComponent(new ComponentName("包名", "包名.类名")); intent.setAction(Intent.ACTION_VIEW); startActivity(intent); 以上这个是在已知包名,类别的情况下,如果不知道类名的话 Intent in
2013-01-31 10:12:27 185
转载 android 获取系统时间
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); String date = sdf.format(new java.util.Date()); //"yyyy-MM-dd HH:mm:ss" 为简单的时间格式,可以根据自己需要获取时间年月日 Date de = sdf.parse
2013-01-22 13:44:25 259
转载 SharedPreferences 简单使用
SharedPreferences sp = getSharedPreferences("share", Activity.MODE_PRIVATE); Editor editor2 = sp.edit(); //添加参数 editor2.putString("Name", "Name");//添加 editor2.commit(); //取出参数 Stri
2013-01-22 09:10:59 173
mysql 中国城市区号
2014-07-28
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人