滚动整个列表水平查看

时间:2012-12-04 09:21:53

标签: android

我有一个自定义列表视图,其中包含14个字段。如下所示:

field1 field2 field3 field4 field5 field6 field7 field8 field9 field10 field11 field12 field13 field14。 现在明显的问题是,我无法将所有字段都放在屏幕上,所以我想让整个列表视图水平滚动,所以我只能显示5-6个字段,当用户水平滚动时将能够看到其余的。 我可以有一个垂直和水平滚动的列表视图吗?

5 个答案:

答案 0 :(得分:10)

只需在水平滚动视图中创建列表视图,骨架如下

<HorizontalScrollView ...........>
    <LinearLayout ......>
        <LinearLayout ......>
        //List View Titles will be here
        </LinearLayout>

        <ListView ........ android:layout_weight="1" />

    </LinearLayout>
</HorizontalScrollView>

在这里,如果您需要向列表视图显示不可滚动的标题,请按照提及的方式将其添加到单独的布局中,并且不要忘记设置 layout_weight 属性。

答案 1 :(得分:1)

列表视图已经支持垂直滚动,所以我们需要支持水平滚动。下面的代码对我来说非常合适。 小心,不要将高度保持为0dp&#34;对于列表视图,即使&#34;权重为1&#34;。因为Horizo​​ntalScrollView将高度设为零,并且不会为列表视图绘制任何项目。

<?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/table_view"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical" >

        <TextView
            android:layout_width="58dp"
            android:layout_height="fill_parent"
            android:gravity="center"
            android:text="header"
            android:textColor="@android:color/black" />

        <HorizontalScrollView
            android:layout_width="fill_parent"
            android:layout_height="fill_parent" >

            <ListView
                android:id="@+id/mylist"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:layout_weight="1" >
            </ListView>
        </HorizontalScrollView>
    </LinearLayout>

答案 2 :(得分:0)

检查This Link。您想要做什么。

答案 3 :(得分:0)

你应该有一个Horizo​​ntalScrollView,它应该是这个link中给出的VerticalScrollView的子节点。

答案 4 :(得分:0)

实现水平列表视图的最简单方法。

<强> Horizo​​natalscroll.xml

 <?xml version="1.0" encoding="utf-8"?>
<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scroll"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:fadeScrollbars="false"
android:background="@color/list_item_bg_color">

 </HorizontalScrollView>

<强> horizo​​ntal_list.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/horizontal_outer_layout"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_margin="0dp"
android:background="@drawable/rect_border_box"
android:orientation="vertical" >



    <TextView
        android:id="@+id/text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
         />
   </Linearlayout>

java代码:

      LinearLayout parent = (LinearLayout) getLayoutInflater().inflate(
            R.layout.observation_detail_parent_layout, null);
      Linearlayout child= null;


     //iterate views upto you adapater count.
      for(int i=0;i<14;i++){
      child = (LinearLayout) getLayoutInflater().inflate(
                    R.layout.horizontal_list, null);

        //set your views specified in horizontal_list.xml

      TextView text = (TextView) findViewById(R.id.text);
      text.setText("your text");
      parent.addView(child);
    }