我有一个音乐文件列表,每个音乐文件都有自己的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。
由于