我有一个音乐文件列表,每个文件都有自己的 ProgressBar 和一个播放/暂停按钮。
这是我的 row.xml 布局
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:text="Play/Pause" />
<ProgressBar
android:id="@+id/progressBar1"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/button1"
android:layout_marginTop="10dp"
android:progressDrawable="@drawable/custom_progress_bar" />
</RelativeLayout>
我想随着音乐文件每秒的进度更新 ProgressBar。随着音乐结束,将 ProgressBar 更新为 0。
现在的问题是如何在 ArrayAdapter 中处理所有这些东西,以及如何有效地完成这些。
我应该使用 ArrayAdapter 类的 notifyDataSetChanged() 方法还是应该使用线程来更新 ProgressBar。
谢谢