0

我正在尝试使用 AsyncTask 加载列表视图,但是当任务完成(onPostExecute 方法)并将适配器设置为列表视图时,列表视图的高度不会根据其中的项目进行调整。

当任务在 doInBackground 方法中时,会显示一个 ProgressBar。之后,当任务完成时,ProgressBar 被隐藏并且 ListView 加载了 AsyncTask 结果。

我的问题是列表视图的高度,它没有显示其中的所有项目。

这是我的代码:

列表视图声明:

       <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@android:color/white"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/textView3"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Comments"
                android:textAppearance="?android:attr/textAppearanceMedium"
                android:textColor="#262023"
                android:textStyle="bold" />

            <ProgressBar
                android:id="@+id/pbComentarios"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center" />

            <ListView
                android:id="@+id/lvComentarios"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:smoothScrollbar="true" >
            </ListView>

             <View
                android:layout_width="match_parent"
                android:layout_height="1dp"
                android:background="#bbb" />

        </LinearLayout>

项目列表模板:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayout2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="match_parent" >

    <ImageButton
        android:id="@+id/ibUser"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@android:drawable/ic_menu_my_calendar" />

    <LinearLayout
        android:id="@+id/linearLayout1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content" >

            <TextView
                android:id="@+id/tvUsername"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:paddingRight="5dp"
                android:text="Medium Text"
                android:textAppearance="?android:attr/textAppearanceMedium"
                android:textColor="#000"
                android:textStyle="bold" />

            <TextView
                android:id="@+id/tvFechacomentario"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Medium Text"
                android:textAppearance="?android:attr/textAppearanceMedium"
                android:textColor="#aaa" />
        </LinearLayout>

        <TextView
            android:id="@+id/tvComentario"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Medium Text"
            android:textAppearance="?android:attr/textAppearanceMedium"
            android:textColor="#000" />
    </LinearLayout>
</LinearLayout>

<View
    android:layout_width="match_parent"
    android:layout_height="1dp"
    android:background="#000" />

onPostExecute 方法:

protected void onPostExecute(ArrayList<Comentario> comentariosList) {
        pbComentarios.setVisibility(View.GONE); // hiding progressbar
        if( comentariosList != null ){
            comentarios = comentariosList;
            icAdapter.setComentarios(comentarios); // setting the arraylist to adapter which extends BaseAdapter
            lvComentarios.setAdapter(icAdapter); // setting adapter to listview
            lvComentarios.setDividerHeight(0);
            lvComentarios.refreshDrawableState(); 
            icAdapter.notifyDataSetChanged();
        }
    }

你能帮我吗?,我尝试了所有列表视图的 xml 属性,但似乎没有任何效果。

提前致谢。

4

2 回答 2

1

Try this instead:

<ListView
        android:id="@+id/lvComentarios"
        android:layout_width="match_parent"
        android:layout_height="0dip"
        android:layout_weight="1"
        android:smoothScrollbar="true" >

EDIT: Try this:

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@android:color/white"
        android:orientation="vertical" >

        <TextView
            android:id="@+id/textView3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Comments"
            android:textAppearance="?android:attr/textAppearanceMedium"
            android:textColor="#262023"
            android:textStyle="bold" />

        <ProgressBar
            android:id="@+id/pbComentarios"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center" />

        <ListView
            android:id="@+id/lvComentarios"
            android:layout_width="match_parent"
            android:layout_height="0dip"
            android:layout_weight="1"
            android:smoothScrollbar="true" />

         <View
            android:layout_width="match_parent"
            android:layout_height="1dp"
            android:background="#bbb" />

    </LinearLayout>

Also, make sure that any higher up views have the height as "match_parent". Otherwise the ListView will not occupy the entire space as needed. Play around with either using "match_parent" or 0 with a weight of "1" (as above).

于 2013-01-07T02:44:07.493 回答
0

我得到它!!问题是所有布局都在 ScrollView 内,这不允许 listview 滚动并获取其高度,y 将其删除,现在一切正常。非常感谢你的帮助。

于 2013-01-08T03:35:23.313 回答