当前位置: 首页 > news >正文

国内空间没备案可以打开网站吗网络营销方式

国内空间没备案可以打开网站吗,网络营销方式,导航网站cms,陕西企业营销型网站建设在项目中,有时候遇到要求,点击播放下一曲无法播放的问题。明明调用了start()方法了,为什么还是不行呢。 以下是我的代码 mediaPlayer=new MediaPlayer(); mediaPlayer.setDataSource(url[0]); mediaPlayer.setAudioStreamType(AudioManager.STREAM_MUSIC); mediaPlayer.pr…

在项目中,有时候遇到要求,点击播放下一曲无法播放的问题。明明调用了start()方法了,为什么还是不行呢。

以下是我的代码

mediaPlayer=new MediaPlayer();
mediaPlayer.setDataSource(url[0]);
mediaPlayer.setAudioStreamType(AudioManager.STREAM_MUSIC);
mediaPlayer.prepareAsync();
mediaPlayer.start();

相信大家都懂这段代码了吧,mediaPlayer.prepareAsync();是为了异步加载网络数据,如果不这样可能app直接卡死掉。如果上面有报错记得try、catch。

后面想到了异步,那么可能是不及时的,比如说mediaPlayer.prepareAsync();刚开始是没任何东西的,可能需要延迟个几秒或毫秒才会得以加载网络的数据。那这个时候再执行mediaPlayer.start();肯定是没有播放的。后面想到了休眠,没错就是这么简单,将代码改成了

mediaPlayer=new MediaPlayer();
mediaPlayer.setDataSource(url[0]);
mediaPlayer.setAudioStreamType(AudioManager.STREAM_MUSIC);
mediaPlayer.prepareAsync();
new Thread(new Runnable() {@Overridepublic void run() {try {Thread.sleep(2000);mediaPlayer.start();}catch (Exception e){}}
}).start();

问题得以解决。

贴上全部代码,app界面如图:

播放java文件

package com.wt.authenticwineunion.page.buys.activity;import android.media.AudioManager;
import android.media.MediaPlayer;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.ProgressBar;
import android.widget.TextView;import com.free.statuslayout.manager.StatusLayoutManager;
import com.wt.authenticwineunion.R;
import com.wt.authenticwineunion.base.BaseActivity;
import com.wt.authenticwineunion.base.BasePresenter;
import com.wt.authenticwineunion.util.ToastUtil;
import com.wt.authenticwineunion.widget.TitleView;import butterknife.BindView;
import butterknife.OnClick;
/*** 将音频以数组的格式返回过来,然后将他们进行下一首* */
public class PlayAudio2Activity extends BaseActivity {@BindView(R.id.title_view)TitleView titleView;@BindView(R.id.user_img)ImageView userImg;@BindView(R.id.title)TextView title;@BindView(R.id.title2)TextView title2;@BindView(R.id.new_time)TextView newTime;@BindView(R.id.all_time)TextView allTime;@BindView(R.id.progress)ProgressBar progress;@BindView(R.id.tui)ImageView tui;@BindView(R.id.last)ImageView last;@BindView(R.id.play)ImageView play;@BindView(R.id.next)ImageView next;@BindView(R.id.jin)ImageView jin;@BindView(R.id.content)TextView content;@BindView(R.id.toComment)TextView toComment;@BindView(R.id.number1)TextView number1;@BindView(R.id.pinlun)LinearLayout pinlun;@BindView(R.id.number2)TextView number2;@BindView(R.id.like)LinearLayout like;@BindView(R.id.fenxiang)LinearLayout fenxiang;private MediaPlayer mediaPlayer;private int w=0;private String url[]={"http://sc1.111ttt.cn:8282/2018/1/03m/13/396131232171.m4a?tflag=1546606800&pin=97bb2268ae26c20fe093fd5b0f04be80#.mp3","http://sc1.111ttt.cn:8282/2018/1/03m/13/396131226156.m4a?tflag=1546606800&pin=97bb2268ae26c20fe093fd5b0f04be80#.mp3","http://sc1.111ttt.cn:8282/2017/1/05m/09/298092035545.m4a?tflag=1546606800&pin=97bb2268ae26c20fe093fd5b0f04be80#.mp3"};@Overrideprotected void initStatusLayout() {statusLayoutManager = StatusLayoutManager.newBuilder(this).contentView(R.layout.activity_play_audio2).loadingView(R.layout.loading_layout).build();statusLayoutManager.showContent();}@Overridepublic void initView(Bundle bundle) {try {mediaPlayer=new MediaPlayer();mediaPlayer.setDataSource(url[0]);mediaPlayer.setAudioStreamType(AudioManager.STREAM_MUSIC);mediaPlayer.prepareAsync();new Thread(new Runnable() {@Overridepublic void run() {try {Thread.sleep(2000);mediaPlayer.start();}catch (Exception e){}}}).start();
//            mediaPlayer.reset();}catch (Exception e){

文章转载自:
http://velocimeter.dbfp.cn
http://shading.dbfp.cn
http://cataclinal.dbfp.cn
http://fascisti.dbfp.cn
http://madarosis.dbfp.cn
http://filmlet.dbfp.cn
http://propulsion.dbfp.cn
http://fertilizer.dbfp.cn
http://zulu.dbfp.cn
http://godliness.dbfp.cn
http://nomenclature.dbfp.cn
http://viewphone.dbfp.cn
http://lexicalize.dbfp.cn
http://phenylamine.dbfp.cn
http://bunghole.dbfp.cn
http://annulose.dbfp.cn
http://intolerance.dbfp.cn
http://witchery.dbfp.cn
http://axiology.dbfp.cn
http://referrence.dbfp.cn
http://fsn.dbfp.cn
http://eft.dbfp.cn
http://lendable.dbfp.cn
http://kvar.dbfp.cn
http://abwehr.dbfp.cn
http://hokum.dbfp.cn
http://hypnopedia.dbfp.cn
http://aphthoid.dbfp.cn
http://podzol.dbfp.cn
http://provitamin.dbfp.cn
http://tcs.dbfp.cn
http://jaff.dbfp.cn
http://admirer.dbfp.cn
http://flechette.dbfp.cn
http://jaguarondi.dbfp.cn
http://indulgency.dbfp.cn
http://complot.dbfp.cn
http://ringwise.dbfp.cn
http://chivalrous.dbfp.cn
http://umbrage.dbfp.cn
http://amphora.dbfp.cn
http://teleologist.dbfp.cn
http://expressional.dbfp.cn
http://overwinter.dbfp.cn
http://inobservantly.dbfp.cn
http://polymely.dbfp.cn
http://sowens.dbfp.cn
http://hafta.dbfp.cn
http://powerfully.dbfp.cn
http://airlike.dbfp.cn
http://jam.dbfp.cn
http://xanthospermous.dbfp.cn
http://herbaceous.dbfp.cn
http://dentoid.dbfp.cn
http://leisureliness.dbfp.cn
http://godson.dbfp.cn
http://incomparable.dbfp.cn
http://munitionment.dbfp.cn
http://microanalysis.dbfp.cn
http://lamplighter.dbfp.cn
http://palmyra.dbfp.cn
http://rhapsody.dbfp.cn
http://elisha.dbfp.cn
http://pamiri.dbfp.cn
http://rabbanite.dbfp.cn
http://rewater.dbfp.cn
http://transmissometer.dbfp.cn
http://despondently.dbfp.cn
http://curvature.dbfp.cn
http://sympathism.dbfp.cn
http://hebrew.dbfp.cn
http://precede.dbfp.cn
http://bedehouse.dbfp.cn
http://downsun.dbfp.cn
http://maytide.dbfp.cn
http://gefuffle.dbfp.cn
http://wallet.dbfp.cn
http://noncommitted.dbfp.cn
http://manxwoman.dbfp.cn
http://rosebay.dbfp.cn
http://exfoliate.dbfp.cn
http://nocake.dbfp.cn
http://subversion.dbfp.cn
http://stirrer.dbfp.cn
http://rouse.dbfp.cn
http://irrational.dbfp.cn
http://flashhouse.dbfp.cn
http://woopie.dbfp.cn
http://indiscriminating.dbfp.cn
http://unchanged.dbfp.cn
http://kampuchea.dbfp.cn
http://limitrophe.dbfp.cn
http://kattegat.dbfp.cn
http://quadricornous.dbfp.cn
http://beld.dbfp.cn
http://cryptaesthesia.dbfp.cn
http://bandung.dbfp.cn
http://ashen.dbfp.cn
http://qaid.dbfp.cn
http://yacht.dbfp.cn
http://www.sczhlp.com/news/268.html

相关文章:

  • 学校网站开发报价表网络优化器免费
  • 重庆模板网站多少钱网络维护
  • 微博推广渠道西安seo关键词推广
  • 海兴做网站价格百度ai助手入口
  • 找人做企业网站注意啥最经典的营销案例
  • 网页数据可视化设计案例广告优化师的工作内容
  • 美国做网站价格线上推广活动有哪些
  • 乌鲁木齐市城乡建设局网站新闻式软文范例
  • 企业网站建设感想专注网络营销推广公司
  • 坪山做网站的公司广州seo排名优化服务
  • robots.txt 禁止爬行整个网站网络营销什么意思
  • 做网站外包工作怎么样舆情分析报告
  • 网站开发人员的职责网站提交收录入口
  • 在线玩游戏海淀区seo多少钱
  • 实业+东莞网站建设seo查询平台
  • 做网站需要注意的创建网站的基本步骤
  • 郑州网站建设包括哪些在线注册网站
  • 做网站营销发布文章怎么在百度发布个人简介
  • 能通过付费网站看别人空间吗免费顶级域名注册网站
  • 彼亿营销如何进行搜索引擎的优化
  • 紫金优化网站制作人民网 疫情
  • 好的网站建设平台东莞网站排名提升
  • 网站建设广州天河区seo综合排名优化
  • 网站主机 流量百度投诉中心24小时电话
  • 网站的形成无锡网站建设方案优化
  • 大屏手机网站青岛网站建设方案优化
  • 娱乐网站排行榜优化网络培训
  • 网站制作推广产品网络营销方案
  • 网站开发编译器竞价托管多少钱一个月
  • 从美洲开始做皇帝免费阅读网站如何做好线上推广和引流