Android Java - ListView和布局中的其他元素

时间:2014-07-19 14:17:09

标签: java android listview android-listview android-scroll

我有以下布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/white"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_marginLeft="@dimen/feed_item_margin"
        android:layout_marginRight="@dimen/feed_item_margin"
        android:layout_marginTop="@dimen/feed_item_margin"
        android:orientation="vertical"
        android:paddingBottom="@dimen/feed_item_padding_top_bottom"
        android:paddingTop="@dimen/feed_item_padding_top_bottom" >

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">

            <ImageView
                android:contentDescription="@string/feed_icon_typeofgame_description"
                android:id="@+id/typeOfGame"
                android:layout_width="@dimen/feed_item_profile_pic"
                android:layout_height="@dimen/feed_item_profile_pic"
                android:scaleType="fitCenter" />

            <LinearLayout
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical"
                android:paddingLeft="@dimen/feed_item_profile_info_padd" >

            <RelativeLayout
                android:layout_width="fill_parent" 
                android:layout_height="wrap_content">

                <TextView
                    android:id="@+id/name"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:textSize="@dimen/feed_itemview_profile_name"
                    android:textStyle="bold" />

                 <TextView
                    android:id="@+id/type"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:textSize="@dimen/feed_itemview_type_text"
                    android:layout_alignParentRight="true"
                    android:textColor="@color/feed_item_text_color" />

             </RelativeLayout>

                <TextView
                    android:id="@+id/timestamp"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:textColor="@color/timestamp"
                    android:textSize="@dimen/feed_itemview_timestamp" />
            </LinearLayout>
        </LinearLayout>

        <TextView
            android:id="@+id/txtStatusMsg"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:paddingBottom="5dp"
            android:paddingLeft="@dimen/feed_item_status_pad_left_right"
            android:paddingRight="@dimen/feed_item_status_pad_left_right"
            android:paddingTop="@dimen/feed_item_status_pad_top"
            android:textSize="@dimen/feed_itemview_desc" />

        <RelativeLayout
            android:layout_width="fill_parent" 
            android:layout_height="wrap_content" 
            android:orientation="horizontal" >

            <Button
            android:id="@+id/buttonRating"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:paddingLeft="@dimen/feed_item_rating_pad_left"
            android:paddingTop="@dimen/feed_item_rating_pad_top" />


        </RelativeLayout>

         <View
            android:layout_width="fill_parent"
            android:layout_height="1dp"
            android:background="@color/feed_divider"
            android:layout_marginLeft="1dp"
            android:layout_marginRight="1dp" />

         <ListView
            android:id="@+id/list_comment"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:divider="@color/feed_divider"
            android:dividerHeight="1px" />

    </LinearLayout>

</LinearLayout>

ListView没有向下滚动,见下图

enter image description here

如何解决这个问题?也许添加ScrollView?或者在视图中显示此元素的上半部分并添加listvew的标题?

2 个答案:

答案 0 :(得分:0)

在scrollview中添加listview,反之亦然,不应该这样做。 将顶部添加为列表视图的标题。

答案 1 :(得分:0)

建议vishnus ::不建议在滚动视图中添加列表


  • 因为 :: Android混淆了要触发的滚动事件(列表视图或滚动视图)
  • 概述 ::您可以使用Just Listview
  • 实现目标

<强>解决方案 ::

              - Try to add a header to a listview

              - Second way to use multiple layouts in listview

示例1 :: See this project

Example2 :: See this Project


希望有所帮助 ,如果您需要帮助,请回复我