求大佬赐教

做的安卓音乐播放器

想做成在线版的  学的不精  求赐教




MainAtivite.java



package com.example.myapplication;

import android.media.MediaPlayer;
import android.os.Bundle;
import android.app.Activity;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;
public class MainActivity extends Activity
{       //声名变量
    private Button start=null;
    private Button pause=null;
    private Button stop=null;
    private TextView state=null;
    private MediaPlayer mp3;
    private Boolean flag=false; //设置标记,false表示正在播放
    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        super.setContentView(R.layout.main);
//取得各按钮组件
        start=(Button) super.findViewById(R.id.start);
        pause=(Button) super.findViewById(R.id.pause);
        stop=(Button) super.findViewById(R.id.stop);
        state=(TextView)super.findViewById(R.id.state);
//为每个按钮设置单击事件
        start.setOnClickListener(new OnClickListenerStart());
        pause.setOnClickListener(new OnClickListenerPause());
        stop.setOnClickListener(new OnClickListenerStop());
        mp3= new MediaPlayer();    //创建一个MediaPlayer对象
//在res下新建一个raw文件夹把一首歌放到此文件夹中并用英文命名
        mp3 = MediaPlayer.create(MainActivity.this,R.raw.bjdsk);
    }
    //各按钮单击事件的实现如下
//开始播放
    private class OnClickListenerStart implements OnClickListener{
        //implementsOnClickListener为实现OnClickListener接口
        @Override
//重写onClic事件
        public void onClick(View v)
        {
//执行的代码,其中可能有异常。一旦发现异常,则立即跳到catch执行。否则不会执行catch里面的内容
            try
            {
                if (mp3!=null)
                {
                    mp3.stop();
                }
                mp3.prepare();         //进入到准备状态
                mp3.start();          //开始播放
                state.setText("Playing");  //改变输出信息为“Playing”,下同
            } catch (Exception e)
            {
                state.setText(e.toString());//以字符串的形式输出异常
                e.printStackTrace();  //在控制台(control)上打印出异常
            }
        }
    }
    //暂停播放
    private class OnClickListenerPause implements OnClickListener{
        @Override
        public void onClick(View v)
        {
            try
            {
                if (flag==false) //若flag为false,则表示此时播放器的状态为正在播放
                {
                    mp3.pause();
                    flag=true;
                    state.setText("pause");
                }
                else if(flag==true){
                    mp3.start();    //开始播放
                    flag=false;     //重新设置flag为false
                    state.setText("Playing");
                }
            } catch (Exception e)
            {
                state.setText(e.toString());
                e.printStackTrace();
            }
        }
    }
    //停止播放
    private class OnClickListenerStop implements OnClickListener{
        @Override
        public void onClick(View v)
        {
            try
            {
                if (mp3!=null)
                {
                    mp3.stop();
                    state.setText("stop");
                }
            } catch (Exception e)
            {
                state.setText(e.toString());
                e.printStackTrace();
            }
        }
    }
    //重写暂停状态事件
    protected void onPause(){
        try
        {
            mp3.release();   //释放音乐资源
        } catch (Exception e)
        {
            state.setText(e.toString());
            e.printStackTrace();
        }
        super.onPause();
    }
}





主界面的



<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

<SeekBar
    android:id="@+id/state"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/hello_world" />
<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="horizontal">
<Button
    android:id="@+id/start"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="start"/>
<Button
    android:id="@+id/pause"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="pause"/>
<Button
    android:id="@+id/stop"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="stop"/>
</LinearLayout>
</LinearLayout>



求知怎么改成在线版的


谢谢

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值