Android项目:ListView实现音乐列表(简易版)

本文介绍如何在Android应用中实现音乐列表展示,包括歌手图片、歌曲信息及CheckBox选择功能。点击列表项会弹出提示,选中项可通过CheckBox标记,遇到的问题如布局对齐、ListView ID设置、空指针错误及CheckBox状态刷新等,提供了相应的解决方案。
摘要由CSDN通过智能技术生成

实现功能:

能够列出手机上的歌曲列表(模拟即可,不必读取/播放实际歌曲文件);

列表内容包括:歌手图片,歌曲名称,歌曲简介,选中(CheckBox)等;

点击任何一行,显示AlertDialog提示,提示正在播放该歌曲;

可以“选中”若干行,删除之(这里使用checkbox实现选中)。

1.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:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <ListView
        android:id="@android:id/list"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="50px"/>

    <Button
        android:id="@+id/delete"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:text="删除" />

</RelativeLayout>

2.Item_show.xml

<?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="horizontal">

    <ImageView
        android:id="@+id/img"
        android:layout_width="80dp"
        android:layout_height="100dp"
        android:layout_margin="10dp" />

    <LinearLayout
        android:orientation="vertical"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">
        <TextView
            android:id="@+i
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值