我有一个带有HorizontalScrollView的布局,其中包含菜单的LinearLayout,其中的内容随数据库的内容一起膨胀。这可以很好地工作,但是当没有足够的元素来使HSV滚动时,这不会填满屏幕的宽度,而该宽度在理想情况下应该居中。 IE。
目前:

| Element 1 Element 2                         | <- edge of screen

代替:
|        Element 1            Element 2       | <- edge of screen

同时仍然能够:
| Element 1 Element 2 Element 3 Element 4 Elem| <- edge of screen now scrolling

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

    <TextView
         android:id="@+id/header"
         android:layout_width="fill_parent"
         android:layout_height="25dp" >
    </TextView>

    <ScrollView
         android:id="@+id/scroll1"
         android:layout_width="fill_parent"
         android:layout_height="fill_parent"
         android:layout_weight="1" >

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

        </LinearLayout>
    </ScrollView>

    <HorizontalScrollView
        android:id="@+id/horizontalScrollView1"
        android:layout_width="fill_parent"
        android:layout_height="30dp">

        <LinearLayout
            android:id="@+id/footerLayout"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:orientation="horizontal" >

        </LinearLayout>
   </HorizontalScrollView>
</LinearLayout>

在footerLayout中将以下XML放大:
<?xml version="1.0" encoding="utf-8"?>

        <TextView
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:id="@+id/footer_content"
            android:textSize="18sp"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:paddingLeft="5dp"
            android:paddingRight="5dp"
            android:text="FOOTER"
            android:singleLine="true" />

最佳答案

我刚刚解决了这个问题。几个小时前,我遇到了它。您需要将Horizo​​ntalScrollView在其父对象中居中,并将其宽度/高度设置为wrap_content。放置在HSV中的布局还必须设置其宽度/高度才能包装内容。这里的重要部分是不要在此布局上设置任何gravity/layout_gravity,否则在放大 View 后可能会遇到(非常烦人的)剪切问题。下面的示例包含在RelativeLayout中。

 <HorizontalScrollView  android:id="@+id/svExample"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_below="@id/rlExample">
    <LinearLayout
        android:id="@+id/llExample"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
    </LinearLayout>
</HorizontalScrollView >

10-08 17:57