La conception d'une application de lecteur de musique nécessite une planification et une structuration minutieuses des composants pour garantir une expérience utilisateur transparente et efficace.
Fonctionnalité de lecture :
Gestion des playlists :
Recherche :
Contrôles multimédias :
Stockage :
L'application du lecteur de musique peut être décomposée en les composants suivants :
Regardons la conception de bas niveau et la mise en œuvre de chaque composant.
La classe Song représente une seule piste musicale avec ses métadonnées.
public class Song { private String id; private String title; private String artist; private String album; private double duration; // in seconds public Song(String id, String title, String artist, String album, double duration) { this.id = id; this.title = title; this.artist = artist; this.album = album; this.duration = duration; } // Getters and setters public String getId() { return id; } public String getTitle() { return title; } public String getArtist() { return artist; } public String getAlbum() { return album; } public double getDuration() { return duration; } }
La classe Playlist gère une collection de chansons. Il permet d'ajouter, de supprimer et de récupérer des chansons.
import java.util.ArrayList; import java.util.List; public class Playlist { private String name; private List<Song> songs; public Playlist(String name) { this.name = name; this.songs = new ArrayList<>(); } public void addSong(Song song) { songs.add(song); } public void removeSong(Song song) { songs.remove(song); } public List<Song> getSongs() { return songs; } public String getName() { return name; } }
La classe MusicPlayer gère les fonctionnalités de lecture telles que la lecture, la pause, l'arrêt et le contrôle du volume.
public class MusicPlayer { private Song currentSong; private boolean isPlaying; public void play(Song song) { this.currentSong = song; this.isPlaying = true; System.out.println("Playing: " + song.getTitle() + " by " + song.getArtist()); } public void pause() { if (isPlaying) { isPlaying = false; System.out.println("Paused: " + currentSong.getTitle()); } else { System.out.println("No song is currently playing."); } } public void stop() { if (currentSong != null) { System.out.println("Stopped: " + currentSong.getTitle()); currentSong = null; isPlaying = false; } else { System.out.println("No song is currently playing."); } } public void resume() { if (currentSong != null && !isPlaying) { isPlaying = true; System.out.println("Resumed: " + currentSong.getTitle()); } else { System.out.println("No song to resume."); } } }
La classe SearchService permet aux utilisateurs de rechercher des chansons par titre, artiste ou album.
import java.util.ArrayList; import java.util.List; public class SearchService { private List<Song> songs; public SearchService(List<Song> songs) { this.songs = songs; } public List<Song> searchByTitle(String title) { List<Song> results = new ArrayList<>(); for (Song song : songs) { if (song.getTitle().equalsIgnoreCase(title)) { results.add(song); } } return results; } public List<Song> searchByArtist(String artist) { List<Song> results = new ArrayList<>(); for (Song song : songs) { if (song.getArtist().equalsIgnoreCase(artist)) { results.add(song); } } return results; } public List<Song> searchByAlbum(String album) { List<Song> results = new ArrayList<>(); for (Song song : songs) { if (song.getAlbum().equalsIgnoreCase(album)) { results.add(song); } } return results; } }
La classe StorageService simule la lecture de chansons à partir du stockage local.
public class Song { private String id; private String title; private String artist; private String album; private double duration; // in seconds public Song(String id, String title, String artist, String album, double duration) { this.id = id; this.title = title; this.artist = artist; this.album = album; this.duration = duration; } // Getters and setters public String getId() { return id; } public String getTitle() { return title; } public String getArtist() { return artist; } public String getAlbum() { return album; } public double getDuration() { return duration; } }
import java.util.ArrayList; import java.util.List; public class Playlist { private String name; private List<Song> songs; public Playlist(String name) { this.name = name; this.songs = new ArrayList<>(); } public void addSong(Song song) { songs.add(song); } public void removeSong(Song song) { songs.remove(song); } public List<Song> getSongs() { return songs; } public String getName() { return name; } }
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!