水平ScrollView的中心元素不足以使其滚动

时间:2012-03-23 18:29:26

标签: android layout element center horizontalscrollview

我有一个HorizontalScrollView的布局,其中包含一个LinearLayout的菜单,其内容随着数据库的内容而膨胀。这样可以正常工作但是当没有足够的元素来进行HSV滚动时,这不会填满理想应该居中的屏幕宽度。即 目前:

| 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>

以下XML在footerLayout中膨胀:

<?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" />

非常感谢任何帮助。

6 个答案:

答案 0 :(得分:25)

我刚刚解决了这个问题。几个小时前我遇到了它。您需要将Horizo​​ntalScrollView置于其父级中心,并将其宽度/高度设置为wrap_content。放在HSV中的布局必须设置其宽度/高度以包装内容。这里的重要部分是不在此布局上设置任何gravity / layout_gravity,或者在给视图膨胀后可能会遇到(非常烦人)裁剪问题。以下示例包含在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 >

答案 1 :(得分:5)

我遇到了同样的问题,终于让它上班了。这是一个最小的例子:

使用Horizo​​ntalScrollView的主要活动布局:

<?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">

    <HorizontalScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:fillViewport="true" >

        <LinearLayout
            android:id="@+id/container"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="horizontal" >
        </LinearLayout>

    </HorizontalScrollView>

</LinearLayout>

要充气并放在滚动视图中的元素的布局:

<?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="wrap_content"
    android:gravity="center_horizontal"
    android:orientation="horizontal" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="your text" />

</LinearLayout>

这是扩充和添加元素的代码示例:

LinearLayout container = (LinearLayout) findViewById(R.id.container);
LayoutParams elementLayoutParams = new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT, 1f);
int elementCount = 3; // ...or however many you like
for (int i = 0; i < elementCount; i++) {
    LinearLayout element = (LinearLayout) getLayoutInflater().inflate(R.layout.element, null);
    container.addView(element, elementLayoutParams);
}

它主要基于一种拉伸this article by Romain Guy中解释的ScrollViews内容的技术。

但是,在这种情况下,您要动态添加内容,另一个关键点是在将元素添加到容器时使用LayoutParams设置权重的正值(本例中为1f)。如果您有一组静态元素可以直接包含在容器中而不需要膨胀,那么可以在XML布局中指定元素外部LinearLayout的权重,如下所示:

android:layout_weight="1"

但是如果你动态地这样做会无效,因为重量将重置为0并且元素会崩溃。因此,您需要通过LayoutParams设置它。

答案 2 :(得分:3)

以下是最简单的方法。

<HorizontalScrollView
    android:id="@+id/horizontalScrollView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" 
    android:layout_gravity="center">

    <LinearLayout
        android:id="@+id/layout_others"
        android:orientation="horizontal"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>
</HorizontalScrollView>

答案 3 :(得分:1)

成功绕过左侧的中心水平裁剪:

Horizo​​ntalScrollView部分布局已更改为:

<LinearLayout 
    android:id="@+id/footerWrapperLayoutToGetAroundCenteringIssue"
    android:orientation="horizontal" 
    android:layout_width="fill_parent"
    android:layout_height="50dp"
    android:gravity="center_horizontal">

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

当它居中时,它们的分布并不均匀,这只是一个遗憾。

如果有任何想法请告诉我。

答案 4 :(得分:0)

在膨胀视图中将权重1分配给textview,并使width wrap_content

答案 5 :(得分:0)

如果父级布局是约束布局:

<HorizontalScrollView
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintHorizontal_bias="0.5"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        android:layout_width="wrap_content"
        android:layout_height="0dp">
        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="horizontal">
            .
            .
        </LinearLayout>
    </HorizontalScrollView>