1

私のアプリケーションでは、リストビューを表示する必要があり、その下にテキストビューを表示する必要があります。リストビューとテキストビューを同じレイアウトにすることは可能ですか? 私のコードは次のとおりです。

  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>  

誰でも私を助けてください。

4

4 に答える 4

0

Realitivelayoutの代わりにLinearlayoutを使用し、向きを「垂直」に設定します

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" > 

<your textview/>
<your textview/>   

<your listview/>
<your textview with proper id/>

</LinearLayout>
于 2012-05-22T06:12:48.280 に答える
0

はい、可能ですが、リストのサイズが画面の高さを超えると、テキストビューが表示されなくなります。そのため、ビューを LinearLayout に追加する代わりに、これらのビューを RelativeLayout に追加し、ListView の高さを親とテキスト ビューの上に設定します。親の下のTextViewの配置。

于 2012-05-22T05:36:44.417 に答える
0

画面の下部にテキストビューを配置し、リストビューを画面の上部と下部のテキストビューの間のスペース全体に配置することができます

このレイアウトはうまくいくはずです:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">  

    <TextView
        android:id="@+id/textView1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"/>

    <ListView
        android:id="@+id/listView1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignParentTop="true"
        android:layout_above="@id/textView1"/>
</RelativeLayout>
于 2012-05-22T05:40:45.143 に答える
0

はい、リストビューの下にテキストビューを使用できますレイアウトマージンの下部を使用してリストビューにいくつかのパディングを与え、リストビューの下にテキストビューを追加します。これにはRelativeLayoutを使用します

于 2012-05-22T05:43:11.180 に答える