0

私は次のレイアウトを持っています...

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" 
android:orientation="vertical">

<HorizontalScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent" 
    android:fillViewport="true">
    <LinearLayout
        android:id="@+id/mygallery"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:orientation="horizontal"
     >
        <ImageView 
            android:id="@+id/level1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:scaleType="center"
            android:src="@drawable/level1"
            android:layout_weight = "1"
            />
         </LinearLayout>
</HorizontalScrollView>

</LinearLayout>

私が抱えている問題は、スクロールするときに長さが足りない場合、途中で動かなくなることです(イメージビューの間)。代わりに次の項目までスクロールさせる方法はありますか? これに適切なツールを使用していますか?

4

2 に答える 2

0

HSBの代わりにViewPager&Fragmentsを使用してこれを解決しました。

于 2013-03-01T20:15:05.563 に答える
-1

Horizo​​ntalScrollView の幅で wrap_content を使用してみてください。これがお役に立てば幸いです。よろしくお願いします

于 2013-02-27T18:35:21.897 に答える