摘要: 需要的权限 MediaRecorder media = new MediaRecorder(); // 设定录音来源为麦克风 MIC|DEFAULT media.setAudioSource(MediaRecorder.AudioSource.MIC); // DEFAUL... 阅读全文
posted @ 2015-04-24 11:15 道无涯 阅读(545) 评论(0) 推荐(0) 编辑
摘要: 创建MediaPlayer对象MediaPlayer mMediaPlayer01 = MediaPlayer.create(this, R.raw.big);播放// 要准备Playback的状态前 一定要使用MediaPlayer.prepare()mMediaPlayer01.prepare(... 阅读全文
posted @ 2015-04-24 10:15 道无涯 阅读(338) 评论(0) 推荐(0) 编辑
摘要: 打开Intent.ACTION_GET_CONTENT取得User选择的Image以ContentResolver将Image转成Bitmap显示于ImageView打开系统相册选取图片 Intent intent = new Intent(Intent.ACTION_GET_CONTENT);... 阅读全文
posted @ 2015-04-24 09:46 道无涯 阅读(364) 评论(0) 推荐(0) 编辑
摘要: 主要是SensorManager和AudioManager的应用private SensorManager mSensorManager01;private int strRingerMode;mSensorManager01 = (SensorManager)getSystemService(Co... 阅读全文
posted @ 2015-04-23 10:26 道无涯 阅读(408) 评论(0) 推荐(0) 编辑
摘要: private void updateInstalledApps(){ PackageInfoList = getPackageManager().getInstalledPackages(PackageManager.GET_ACTIVITIES); ArrayList> list... 阅读全文
posted @ 2015-04-22 15:39 道无涯 阅读(552) 评论(0) 推荐(0) 编辑
摘要: public void runRootCommand(String command){ Process process = null; try{ process = Runtime.getRuntime().exec(command); process.waitF... 阅读全文
posted @ 2015-04-22 15:20 道无涯 阅读(663) 评论(0) 推荐(0) 编辑
摘要: 控制设备管理器启动设备管理器停用设备管理器检验设备管理器是否激活设置锁屏设定密码输入错误次数清除手机数据清除手机及SD卡数据设定锁屏幕的时间(毫秒)设置解锁密码限制设置密码最小长度跳转至系统密码解锁页面定义设备管理器广播接受者DevicePolicyManager myDPM;ComponentNa... 阅读全文
posted @ 2015-04-22 13:43 道无涯 阅读(932) 评论(0) 推荐(0) 编辑
摘要: /*取得ConnectivityManager*/ ConnectivityManager cm=(ConnectivityManager)getSystemService(Context.CONNECTIVITY_SERVICE); /*判断网络状态并显示于画面中*/ i... 阅读全文
posted @ 2015-04-22 09:49 道无涯 阅读(630) 评论(0) 推荐(0) 编辑
摘要: 需要配置权限 判断Android的WIFI与GPS状态 private void checkWifiAndGpsStatus() { boolean result = true; /* 取得WifiManager与LocationManager */ ... 阅读全文
posted @ 2015-04-22 09:44 道无涯 阅读(3462) 评论(0) 推荐(0) 编辑
摘要: 数值插播器final Button button = new Button(this);ValueAnimator animator = ValueAnimator.ofInt(0,100);animator.setDuration(5000);animator.addUpdateListener(... 阅读全文
posted @ 2015-04-20 11:43 道无涯 阅读(317) 评论(0) 推荐(0) 编辑