91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android中如何開發簡易音樂播放器

發布時間:2021-09-27 10:55:48 來源:億速云 閱讀:99 作者:小新 欄目:編程語言

這篇文章主要介紹了Android中如何開發簡易音樂播放器,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

代碼:

activity—main。xml:

<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/activity_main" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#696969"> <LinearLayout android:layout_width="match_parent" android:layout_height="60dp" android:layout_marginTop="10dp" android:layout_alignParentTop="true" android:id="@+id/title" android:orientation="horizontal"> <TextView  android:layout_width="match_parent"  android:layout_height="wrap_content"  android:layout_marginTop="15dp"  android:layout_marginBottom="3dp"  android:text="生僻字"  android:textSize="25dp"  android:gravity="center"  android:textColor="#ffffff"/> </LinearLayout> <TextView android:layout_width="match_parent" android:layout_height="0.5dp" android:background="#afafaf" android:layout_below="@+id/title"/> <ImageView android:id="@+id/disc" android:layout_width="280dp" android:layout_height="280dp" android:layout_centerHorizontal="true" android:layout_below="@+id/title" android:layout_marginTop="50dp" android:src="@drawable/xcvb" /> <ImageView android:id="@+id/needle" android:layout_width="120dp" android:layout_height="120dp" android:layout_below="@+id/title" android:layout_marginLeft="150dp"/> <RelativeLayout android:id="@+id/music1" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_above="@+id/rl" android:layout_marginTop="20dp" android:layout_marginBottom="10dp" android:gravity="center"> <SeekBar  android:id="@+id/music_seek_bar"  android:layout_width="240dp"  android:layout_height="wrap_content"/> <TextSwitcher  android:id="@+id/text_switcher"  android:layout_width="80dp"  android:layout_height="50dp"  android:layout_toRightOf="@+id/music_seek_bar">  <TextView  android:layout_width="match_parent"  android:layout_height="wrap_content"  android:text="00:00/2:00"  android:textColor="@color/colorAccent"/> </TextSwitcher> </RelativeLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="70dp" android:gravity="center" android:id="@+id/rl" android:layout_marginBottom="20dp" android:layout_alignParentBottom="true" android:orientation="horizontal"> <ImageView  android:id="@+id/playing_pre"  android:layout_width="wrap_content"  android:layout_height="wrap_content"  android:layout_gravity="center_vertical"  android:src="@drawable/music_previous" /> <ImageView  android:id="@+id/playing_play"  android:layout_width="wrap_content"  android:layout_height="wrap_content"  android:layout_gravity="center_vertical"  android:src="@drawable/music_play" /> <ImageView  android:id="@+id/playing_next"  android:layout_width="wrap_content"  android:layout_height="wrap_content"  android:layout_gravity="center_vertical"  android:src="@drawable/music_next" /> </LinearLayout></RelativeLayout>

main。activity部分:

package com.example.cungu.musicdemo;import android.animation.ObjectAnimator;import android.animation.ValueAnimator;import android.content.ComponentName;import android.content.Intent;import android.content.ServiceConnection;import android.graphics.Bitmap;import android.graphics.Color;import android.os.Build;import android.os.IBinder;import android.support.v7.app.AppCompatActivity;import android.os.Bundle;import android.view.View;import android.view.Window;import android.view.WindowManager;import android.view.animation.LinearInterpolator;import android.widget.Button;import android.widget.ImageView;import android.widget.SeekBar;import android.widget.TextSwitcher;import java.text.SimpleDateFormat;import java.util.Date;public class MainActivity extends AppCompatActivity implements View.OnClickListener, Runnable, ServiceConnection, SeekBar.OnSeekBarChangeListener { private ImageView disc,needle,playingPre,playingPlay,playingNext; private ObjectAnimator discAnimation,needleAnimation;//自定義指針和唱盤 private boolean isPlaying = true;//0,1 判斷是否處于播放狀態 //聲明服務 private static final String TAG = MainActivity.class.getSimpleName(); private MediaService.MusicController mMusicController; //使用方法:mMusicController.play();播放 mMusicController.pause();暫停 private boolean running; private TextSwitcher mSwitcher; private SeekBar mSeekBar; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); //設置透明欄 if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {  Window window = getWindow();  window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS   | WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);  window.getDecorView().setSystemUiVisibility(   View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN    | View.SYSTEM_UI_FLAG_LAYOUT_STABLE  );  window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);  window.setStatusBarColor(Color.TRANSPARENT); } //滑動條部分 mSeekBar = (SeekBar) findViewById(R.id.music_seek_bar); mSeekBar.setOnSeekBarChangeListener(this); mSwitcher = (TextSwitcher) findViewById(R.id.text_switcher); mSwitcher.setInAnimation(this, android.R.anim.fade_in); mSwitcher.setOutAnimation(this, android.R.anim.fade_out); Intent intent = new Intent(this, MediaService.class); //增加StartService,來增加后臺播放功能 startService(intent); // 綁定服務,使用context來綁定 // 那個界面需要綁定 就用哪個 Activity // 參數1:Intent  代表需要綁定哪一個Service // 參數2:ServiceConnection 回調接口,可以接收到Service連接成功和斷開的回調,成功就可以取到對象。 // 綁定服務 參數2就是服務和指定的對象綁定在一起 bindService(intent, this, BIND_AUTO_CREATE); //指針和唱片部分 initViews();//定義背景圖 setAnimations(); } private void initViews() { playingPre = (ImageView) findViewById(R.id.playing_pre); playingPlay = (ImageView) findViewById(R.id.playing_play); playingNext = (ImageView) findViewById(R.id.playing_next); disc = (ImageView) findViewById(R.id.disc); needle = (ImageView) findViewById(R.id.needle); playingPre.setOnClickListener(this); playingPlay.setOnClickListener(this); playingNext.setOnClickListener(this); } //動畫設置 private void setAnimations() { discAnimation = ObjectAnimator.ofFloat(disc, "rotation", 0, 360); discAnimation.setDuration(20000); discAnimation.setInterpolator(new LinearInterpolator()); discAnimation.setRepeatCount(ValueAnimator.INFINITE); needleAnimation = ObjectAnimator.ofFloat(needle, "rotation", 0, 25); needle.setPivotX(0); needle.setPivotY(0); needleAnimation.setDuration(800); needleAnimation.setInterpolator(new LinearInterpolator()); } @Override public void onClick(View v) { int id = v.getId(); switch (id) {  case R.id.playing_pre://前一曲  if (discAnimation != null) {   discAnimation.end();   playing();  }  break;  case R.id.playing_play://播放中  if (isPlaying){   playing();  }else {   if (needleAnimation != null) {   needleAnimation.reverse();   needleAnimation.end();   mMusicController.pause();   }   if (discAnimation != null && discAnimation.isRunning()) {   discAnimation.cancel();   mMusicController.pause();   float valueAvatar = (float) discAnimation.getAnimatedValue();   discAnimation.setFloatValues(valueAvatar, 360f + valueAvatar);   }   playingPlay.setImageResource(R.drawable.music_play);   isPlaying = true;  }  break;  case R.id.playing_next://下一曲  if (discAnimation != null) {   discAnimation.end();   playing();  }  break;  default:  break; } } //播放:1、播放音樂 2、動畫旋轉 3、暫停圖片切換為播放按鈕圖片 private void playing(){ needleAnimation.start(); discAnimation.start(); playingPlay.setImageResource(R.drawable.music_pause); mMusicController.play();//播放 isPlaying = false; }//===================================播放歌曲服務開啟、停止、結束=============================== @Override protected void onStart() { super.onStart(); Thread thread = new Thread(this); thread.start(); } @Override protected void onStop() { running = false; super.onStop(); } @Override protected void onDestroy() { // 解除綁定 unbindService(this); super.onDestroy(); } //---------------------播放到當前音樂的滑動條及時間設置-------------------------- @Override public void run() { running = true; try {  while (running) {  if (mMusicController != null) {   long musicDuration = mMusicController.getMusicDuration();   final long position = mMusicController.getPosition();   final Date dateTotal = new Date(musicDuration);   final SimpleDateFormat sb = new SimpleDateFormat("mm:ss");   mSeekBar.setMax((int) musicDuration);   mSeekBar.setProgress((int) position);   mSwitcher.post(    new Runnable() {    @Override    public void run() {     Date date = new Date(position);     String time = sb.format(date) + "/" + sb.format(dateTotal);     mSwitcher.setCurrentText(time);    }    }   );  }  Thread.sleep(500);  } } catch (InterruptedException e) {  e.printStackTrace(); } } //----------------------------- //服務綁定與解除綁定的回調 /** * 當服務與當前綁定對象,綁定成功,服務onBind方法調用并且返回之后 * 回調給這個方法 * * @param name * @param service IBinder 就是服務 onBind 返回的對象 */ @Override public void onServiceConnected(ComponentName name, IBinder service) { mMusicController = ((MediaService.MusicController) service); } @Override public void onServiceDisconnected(ComponentName name) { mMusicController = null; } public void btnStopService(View view) { Intent intent = new Intent(this, MediaService.class); stopService(intent); } @Override public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) { } @Override public void onStartTrackingTouch(SeekBar seekBar) { } @Override public void onStopTrackingTouch(SeekBar seekBar) { mMusicController.setPosition(seekBar.getProgress()); }}

mediaserver部分的代碼:

package com.example.cungu.musicdemo;import android.app.Service;import android.content.Intent;import android.media.MediaPlayer;import android.os.Binder;import android.os.Environment;import android.os.IBinder;public class MediaService extends Service { private MediaPlayer mPlayer; /* 綁定服務的實現流程: * 1.服務 onCreate, onBind, onDestroy 方法 * 2.onBind 方法需要返回一個 IBinder 對象 * 3.如果 Activity 綁定,Activity 就可以取到 IBinder 對象,可以直接調用對象的方法 */ // 相同應用內部不同組件綁定,可以使用內部類以及Binder對象來返回。 public class MusicController extends Binder { public void play() {  mPlayer.start();//開啟音樂 } public void pause() {  mPlayer.pause();//暫停音樂 } public long getMusicDuration() {  return mPlayer.getDuration();//獲取文件的總長度 } public long getPosition() {  return mPlayer.getCurrentPosition();//獲取當前播放進度 } public void setPosition (int position) {  mPlayer.seekTo(position);//重新設定播放進度 } } /** * 當綁定服務的時候,自動回調這個方法 * 返回的對象可以直接操作Service內部的內容 * @param intent * @return */ @Override public IBinder onBind(Intent intent) { return new MusicController(); } @Override public void onCreate() { super.onCreate(); mPlayer = MediaPlayer.create(this, R.raw.yinyue1); } /** * 任意一次unbindService()方法,都會觸發這個方法 * 用于釋放一些綁定時使用的資源 * @param intent * @return */ @Override public boolean onUnbind(Intent intent) { return super.onUnbind(intent); } @Override public void onDestroy() { if (mPlayer.isPlaying()) {  mPlayer.stop(); } mPlayer.release(); mPlayer = null; super.onDestroy(); }}

到此,這一個簡易的音樂播放器,就完成了。

感謝你能夠認真閱讀完這篇文章,希望小編分享的“Android中如何開發簡易音樂播放器”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

台南县| 华池县| 河南省| 花莲县| 旅游| 凌海市| 文安县| 襄垣县| 奉节县| 垫江县| 英山县| 牡丹江市| 高平市| 喜德县| 濮阳市| 定州市| 彭山县| 霍邱县| 新宾| 巢湖市| 西乌| 宁河县| 永泰县| 吉木乃县| 建瓯市| 上思县| 微博| 明水县| 滕州市| 赤壁市| 乐昌市| 罗田县| 尉氏县| 南靖县| 喀喇沁旗| 凤阳县| 南京市| 凉城县| 台北县| 永登县| 麻阳|