andriod第一阶段anddoid音频播放器android_第1页
andriod第一阶段anddoid音频播放器android_第2页
andriod第一阶段anddoid音频播放器android_第3页
andriod第一阶段anddoid音频播放器android_第4页
andriod第一阶段anddoid音频播放器android_第5页
已阅读5页,还剩22页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、课程名称:Android音频2、知、上次课程的主要知识、本次预计讲解的知识3、具体内、Activity生命周期及其应用(重点Activity在显示和执行的过程中,也会存在创建以及销毁等等的状态,同样的也通过一些方法可以这些状态生命周期的方法主要有以下7种:1)onCreateActivity创建时执行2)onDestory:在销毁时执行3)onStart4)onResume5)onPause6)onStop7)onRestartActivity在onDestory中进行回privatestaticList<Activity>privatestaticList<Activity>allActiveActivities=在BaseActivity的onCreateActivtyprotectedprotectedvoidonCreate(BundlesavedInstanceState){}在onDestoryActivityprotectedvoidprotectedvoidonDestroy(){}OnClickListener()OnClickListener()publicvoidonClick(Viewv)退出程//循环所有集合中的Activity,依次关Itor<Activity>iterwhile(iter.hasNext())}}、SeekBar滑动条(掌握 android:orientation="vertical">android:progress="50"/>android:layout_height="wrap_content"/>publicclassMainActivityextendspublicclassMainActivityextendsActivityprivateSeekBarprivateTextViewprotectedvoidonCreate(BundlesavedInstanceState)//设置默认使用的布局文seekbar=(SeekBar)findViewById(R.id.seekbar);text=(TextView)findViewById(R.id.text);OnSeekBarChangeListener(){publicvoidonStopTrackingTouch(SeekBarseekBar)}publicvoidonStartTrackingTouch(SeekBarseekBar)text.setText("text.setText("开始拖动}publicvoidonProgressChanged(SeekBarseekBar,booleanfromUser)text.setText("拖动中,位置为}}}、音频器(掌握使用Mediayer的流程设置要的音乐进行准备进行在状态中,可以通过pause()方法来暂停音乐的,也可以通过start()恢复可以通过start()重新音乐。下面实 SD卡中音乐的功publicclassMainActivityextendsActivityprivate privateStringfilePath=protectedvoidonCreate(BundlesavedInstanceState){//先建 yer对yer=new 设置数据来try//使用这种方法创建,不需要prepare,可以直yer= yer.create(this,准 }catch(Exceptione){Toast.makeText(MainActivity.this," 出现问题与厂商联系}设 yer.setVolume(1.0f,}protectedvoidonDestroy()//退出时释 的音tryif yer!=null)if( ying()){}}}catch(Exceptione){}}}}可以加入一些控制按钮,来完成操作publicpublicclassMainActivityextendsActivityprivateprivateStringfilePath=privateStringname="FlymetotheprivateButtonprivateButtonprivateprivateTextViewprivateTextViewprivateSeekBar还可以在数据库中建 的音乐列表数据,通 数据库,取得这些音乐,并列表显示到界面中总时长的文privateString加入子线程通privateHandler//取得所有 歌曲的集privateList<Map<String,Object>>privateDataBaseConnection//当 的歌曲索private yedIndex=protectedvoidonCreate(BundlesavedInstanceState){建立数据库连dbc=new 数据库中保存的音 列allValues初始化所有组preBtn=(Button)findViewById(R.id.pre_btn);yBtn=(Button) nextBtn=(Button)songName=(TextView)findViewById(R.id.song_name);timeText=(TextView)seekbar=(SeekBar)handler=newHandler()publicvoidhandleMessage(Messagemsg) +"/"+}初始化第一首歌 设 yer.setVolume(1.0f,yBtn.setOnClickListener(newOnClickListener()publicvoidonClick(Viewv)if( ying()){ }else}}//拖动,并改 位OnSeekBarChangeListener(){publicvoidonStopTrackingTouch(SeekBarseekBar)//根据当前SeekBar的位置, 器从这个位置开//重 音}publicvoidonStartTrackingTouch(SeekBarseekBar)//暂 音if( ying()){}}publicvoidonProgressChanged(SeekBarseekBar,booleanfromUser)//时间跟着进度条一起走,前提是用户改变的时候if(fromUser){timeText.setText(changeTimeFormat(progress)+"/+}}进行歌曲的切preBtn.setOnClickListener(newOnClickListener()publicvoidonClick(Viewv)if yedIndex==0)Toast.makeText(MainActivity.this当前已经是第}else }}nextBtn.setOnClickListener(newOnClickListener()publicvoidonClick(Viewv)if yedIndex==allValues.size()-1)Toast.makeText(MainActivity.this当前已经是最}else }}//加入一个子线程,控制拖动条的自动移Threadt=newThread()publicvoidrun()while(true)try//如果已 了,就移动拖动条,否则不用移if( ying()){}}catch(Exceptione){}}}}进行音乐的初始publicvoid yedMusic()Map<String,Object>map= filePath=map.get("filePath").toString();name=map.get("songName").toString();if yer!=null)if( ying()){}}//先建 yer对yer=new 设置数据来try yer=Media yer.create(this,R.raw.a);yer.setDataSource(this,Uri.fromFile(new准allTimeText= }catch(Exceptione){Toast.makeText(MainActivity.this," 出现问题请}设置最大 //计算 时间,并整理成为显示的格timeText.setText("00:00/"+}算法,根据毫秒钟:格publicStringchangeTimeFormat(intms){转换成秒ints=ms/1000;分intmin=s/60;取得剩余的秒s=s%StringBuilderbuilder=newif(min<10){}if(s<10){}return}protectedvoidonDestroy()//退出时释 的音tryififyer!=null)ifying())}}}catch(Exceptione){}}}、器(了解与音频所使用的支持类完全一样,操作的方法也相同SurfaceView来实现。一般的器都是横屏显示的,这里可以通过在AndroidManifest.xml中控制横屏和竖屏的值以android:screenOrientation=android:screenOrientation="landscape"<intent-android:name="ent.action.MAIN"/>android:name="ent.category.LAUNCHER"/></intent-publicclassMainActivitypublicclassMainActivityextendsActivityprivateprivateSurfaceViewprivateprivateSeekBarprivateLinearLayoutprivateLinearLayoutprotectedvoidonCreate(BundlesavedInstanceState){surface=(SurfaceView)findViewById(R.id.main_view);yBtn=(Button)findViewById(R.id. topBar=(LinearLayout)findViewById(R.id.top_bar);bottomBar=(LinearLayout)seekbar=(SeekBar)surface.getHolder().addCallback(newCallback()publicvoidsurfaceDestroyed(SurfaceHolder{}publicvoidsurfaceCreated(SurfaceHolderholder)yer=new try//设置显示图像所对应的SUrfaceView组 }catch(Exceptione){} }publicvoidsurfaceChanged(SurfaceHolderintintwidth,intheight)}yBtn.setOnClickListener(newOnClickListener()publicvoidonClick(Viewv)if( ying()){ }else}}//

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论