我有LinearLayout,这个层次结构如下所示:HorizontalScrollview
以root身份显示,它包含一个垂直LinearLayout
,其中包含一个水平LinearLayout
作为标题(由{{1}制作})和下面的TextViews
。
基本上,我们的想法是提供一个水平滚动(因为ListView已经有了它的垂直滚动)。我几乎得到了它,问题是ListView不能扩展其宽度以适应内容。
以下是布局的代码:
ListView
我使用自定义ArrayAdapter以及列表项的自定义布局,代码如下:
<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/hscrollMain"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:id="@+id/LinearLayout1"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/textView1"
android:layout_width="170dp"
android:layout_height="wrap_content"
android:text="@string/fecha"
android:textStyle="bold" />
<TextView
android:id="@+id/tvFechaDet"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:text="@string/tipo"
android:textStyle="bold" />
<TextView
android:id="@+id/tvTipoEvtDet"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/descripcion"
android:textStyle="bold" />
</LinearLayout>
<ProgressBar
android:id="@+id/pbEventListing"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:indeterminate="true"
android:visibility="gone" />
<ListView
android:id="@+id/lvEventos"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</ListView>
</LinearLayout>
</HorizontalScrollView>
PD:是的,我用SO编辑器成功地格式化了代码,last time我搞砸了xD。
答案 0 :(得分:1)
可能是您已将第一个LinearLayout宽度设置为换行内容。尝试将其更改为match_parent
<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/hscrollMain"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:id="@+id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
...