所以我正在制作一个应用程序来录制声音,然后将录制的声音添加到另一个活动的列表视图中。这是它的工作原理:
录制声音后,会弹出一个对话框,要求命名文件。输入某个名称后,我按“Enter”,下一个活动打开。
下一个活动的 xml:
<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"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".RecordedLibrary"
android:id="@+id/rLayout" >
<ListView android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/mainListView">
</ListView>
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:text="Library is empty"
android:textColor="#C0C0C0" />
</RelativeLayout>
下一个活动的java代码:
listView = (ListView) findViewById (R.id.mainListView);
listAdapter = new ArrayAdapter<String>(this, R.layout.simplerow);
listAdapter.add(filename.toString());
listView.setAdapter(listAdapter);
因此,一旦下一个活动打开,我将文件名插入到 listAdapter。顺便说一下,filename 是我之前在对话框中键入的文件的名称。
R.layout.simplerow xml:
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/rowTextView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:textSize="16sp" >
</TextView>
所以,在我录制了第一个文件并设置了某个名称后,就会发生这种情况: http ://shrani.si/f/1F/3G/4QX53vyH/1.png
现在,在我录制第二个文件并设置不同的名称后,就会发生这种情况: http ://shrani.si/f/q/qH/2Jmg2zoH/screenshot2013-08-06-00-.png
如您所见,它没有添加新的列表视图行,而是覆盖了列表视图的第一行。
知道为什么会发生这种情况吗?