黄振 (湖北黄冈)

  博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 :: 管理 ::

2011年9月16日

摘要: 找到源码路径frameworks\base\services\camera\libcameraservice下的CameraService.cpp文件,在loadSound()方法里面改为如下语句://mSoundPlayer[SOUND_RECORDING] = newMediaPlayer("/system/media/audio/ui/VideoRecord.ogg");mSoundPlayer[SOUND_RECORDING] = 0; 阅读全文
posted @ 2011-09-16 18:05 黄振 (湖北黄冈) 阅读(349) 评论(0) 推荐(0)

摘要: 首先在oncreate()中:mProgressDialog = new ProgressDialog(this);mProgressDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);mProgressDialog.setTitle("标题");然后在AsyncTask中:protected void onPreExecute() { super.onPreExecute(); mCount = 0; int temp = 100; mProgressDialog.setMax(temp); mProgress 阅读全文
posted @ 2011-09-16 15:17 黄振 (湖北黄冈) 阅读(288) 评论(0) 推荐(0)