自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(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 中国城市区号

DROP TABLE IF EXISTS `city`; CREATE TABLE `city` ( `Id` int(11) NOT NULL auto_increment, `province` varchar(255) default NULL, `city` varchar(255) default NULL, `number` varchar(4) character set utf8 default NULL, PRIMARY KEY (`Id`) ) ENGINE=InnoDB AUTO_INCREMENT=368 DEFAULT CHARSET=gbk; -- ---------------------------- -- Records of city -- ---------------------------- INSERT INTO `city` VALUES ('1', '北京', '北京', '010'); INSERT INTO `city` VALUES ('2', '天津', '天津', '022'); INSERT INTO `city` VALUES ('3', '河北', '石家庄', '0311'); INSERT INTO `city` VALUES ('4', '河北', '保定', '0312'); INSERT INTO `city` VALUES ('5', '河北', '张家口', '0313'); INSERT INTO `city` VALUES ('6', '河北', '承德', '0314');

2014-07-28

安卓打开gps

android调用打开GPS开关,这个不用刷成系统软件,但无法再4.0以上打开,4.0只能刷成系统软件用别的代码打开

2013-03-04

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除