IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> Android应用开发--MP3音乐播放器界面设计(2),0基础学android -> 正文阅读

[移动开发]Android应用开发--MP3音乐播放器界面设计(2),0基础学android

android:layout_alignParentTop=“true”

android:src="@drawable/item" />

<TextView

android:id="@+id/music_duration"

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_alignParentRight=“true”

android:layout_alignParentTop=“true”

android:layout_marginRight=“5.0dp”

android:textColor="@android:color/white"

android:text="@string/time" />

<TextView

android:id="@+id/music_title"

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_alignParentTop=“true”

android:layout_marginLeft=“5dp”

android:layout_toR
ightOf="@+id/albumImage"

android:textColor="@android:color/white"

android:text="@string/siger" />

<TextView

android:id="@+id/music_Artist"

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_alignLeft="@+id/music_title"

android:layout_below="@id/music_title"

android:textColor="@android:color/white"

android:text="@string/artist" />

第二个是用来显示歌词和控制播放的UI,是这篇博文要实现的。

布局代码如下:

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android=“http://schemas.android.com/apk/res/android”

android:id="@+id/RelativeLayout1"

android:layout_width=“match_parent”

android:layout_height=“match_parent”

android:background="@drawable/bg_playback" >

<RelativeLayout

android:id="@+id/header_layout"

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:layout_alignParentTop=“true” >

<Button

android:id="@id/repeat_music"

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_alignParentLeft=“true”

android:background="@drawable/repeat_none_selector" />

<Button

android:id="@id/shuffle_music"

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_alignParentRight=“true”

android:background="@drawable/shuffle_none_selector" />

<TextView

android:id="@+id/musicTitle"

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_alignBaseline="@id/repeat_music"

android:layout_centerHorizontal=“true”

android:text="@string/siger"

android:textAppearance="?android:attr/textAppearanceLarge"

android:ellipsize=“marquee”

android:focusable=“true”

android:focusableInTouchMode=“true”

android:gravity=“center_horizontal”

android:lines=“1”

android:marqueeRepeatLimit=“marquee_forever”

android:textColor="@android:color/white"

android:singleLine=“true”/>

<TextView

android:id="@+id/musicArtist"

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_below="@id/musicTitle"

android:layout_marginTop=“15dp”

android:layout_centerHorizontal=“true”

android:textSize=“18sp”

android:textColor="#0F0"

android:text="@string/artist"

/>

<ScrollView

android:id="@+id/lrcScrollView"

android:layout_width=“match_parent”

android:layout_height=“match_parent”

android:layout_below="@id/header_layout" >

<TextView

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_gravity=“center”

android:text=“好歌不容错过”

android:textAppearance="?android:attr/textAppearanceLarge" />

<RelativeLayout

android:id="@+id/footer_layout"

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:layout_alignParentBottom=“true” >

<RelativeLayout

android:id="@+id/seekbarLayout"

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:layout_below="@id/lrcScrollView"

android:background="@drawable/player_progresslayout_bg" >

<SeekBar

android:id="@+id/audioTrack"

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:layout_centerVertical=“true”

android:background="@drawable/player_progress_bg"

android:progressDrawable="@drawable/seekbar_img"

android:thumb="@drawable/media_player_progress_button"

/>

<TextView

android:id="@+id/current_progress"

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_below="@id/audioTrack"

android:text=“0:25” />

le/seekbar_img"

android:thumb="@drawable/media_player_progress_button"

/>

<TextView

android:id="@+id/current_progress"

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_below="@id/audioTrack"

android:text=“0:25” />

  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2022-01-30 19:02:44  更:2022-01-30 19:04:44 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/28 5:31:07-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码