防止从屏幕上的任何位置访问Horizo​​ntalScrollView

时间:2016-09-05 01:26:36

标签: android xml android-studio scrollview horizontalscrollview

我(在Android Studio中)创建了一个Horizo​​ntalScrollView,我可以从屏幕上的任何位置访问它,这意味着无论我在哪里滚动,无论是在屏幕的顶部还是底部,中间的ScrollView都会滚动

这是代码:

<HorizontalScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fillViewport="true"
    android:layout_marginRight="20dp">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:stretchColumns="1">

        <ImageButton
            android:id="@+id/somerandomid"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical"
            android:background="@drawable/image"
            android:layout_marginLeft="20dp"
            android:layout_marginTop="140dp" />
        <ImageButton
            android:id="@+id/somerandomid"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical"
            android:background="@drawable/image"
            android:layout_marginLeft="20dp"
            android:layout_marginTop="140dp" />
   </LinearLayout>
</HorizontalScrollView>

2 个答案:

答案 0 :(得分:0)

您需要制作布局wrap_content,例如:

<HorizontalScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fillViewport="true"
android:layout_marginRight="20dp"
android:layout_marginTop="140dp">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:stretchColumns="1"
    android:orientation="horizontal">

    <ImageButton
        android:id="@+id/somerandomid"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:background="@drawable/image"
        android:layout_marginLeft="20dp"
        />
    <ImageButton
        android:id="@+id/somerandomid"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:background="@drawable/image"
        android:layout_marginLeft="20dp"
         />
  </LinearLayout>
  </HorizontalScrollView>

答案 1 :(得分:0)

请发布此布局的所有代码,虽然我可能建议使用horizo​​ntalSerollView的特定高度来保护它不受match_parent或wrap_content的影响,并使用RelativeLayout作为子代。

<HorizontalScrollView
        android:layout_width="match_parent"
        android:layout_height="your_height(not match_parent)"
        android:id="@+id/horizontalScrollView"
        android:scrollbars="none">

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="center">

    <ImageButton
        android:id="@+id/somerandomid"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:background="@drawable/image"
        android:layout_marginLeft="20dp"
        android:layout_marginTop="140dp" />

    <ImageButton
        android:id="@+id/somerandomid"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:background="@drawable/image"
        android:layout_marginLeft="20dp"
        android:layout_marginTop="140dp" />

        </RelativeLayout>

    </HorizontalScrollView>