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 个文本视图以显示总计,如果我放置相对布局,此列表视图将正确覆盖另一个。我的 Xml 文件如下:

<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

是的,这是可能的,但是只要列表大小超过屏幕高度,您将永远无法看到 textview。因此,不要将视图添加到 LinearLayout 中,而是将这些视图添加到 RelativeLayout 中,将 ListView 高度设置为填充父视图,以及高于文本视图。和 TextView 在父底部的对齐方式。

于 2012-05-22T05:36:44.417 回答
0

是的,您可以在 Listview 下面使用 Textview 使用Layout margin bottom to listview 提供一些填充,并将您的 Textview 添加到 Listview 下方。因此,请使用RelativeLayout

于 2012-05-22T05:43:11.180 回答
0

使用 Linearlayout 而不是 Realitivelayout 并将方向设置为“垂直”

<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

您可以在屏幕底部放置一个文本视图,并让列表视图占据屏幕顶部和底部文本视图之间的整个空间

这种布局应该可以解决问题:

<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 回答