私のアプリケーションでは、リストビューを表示する必要があり、その下にテキストビューを表示する必要があります。リストビューとテキストビューを同じレイアウトにすることは可能ですか? 私のコードは次のとおりです。
setContentView(R.layout.report);
ListView lv=(ListView)findViewById(R.id.listView1);
db.open();
Cursor c = db.getAllTitles();
startManagingCursor(c);
String[] from = new String[] { db.KEY_INCOME,db.KEY_DESC};
int[] to = new int[] { R.id.textView1 ,R.id.textView2};
SimpleCursorAdapter notes =
new SimpleCursorAdapter(this, R.layout.report, c, from, to);
// System.out.println("notes="+notes.getCount());
lv.setAdapter(notes);
String total= db.add();
実際には、リストにデータを表示するために2つのテキストビューを表示しています。最後に、合計を表示するために3番目のテキストビューを追加する必要があります。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<ListView
android:id="@+id/listView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
</ListView>
誰でも私を助けてください。