HorizontallScrollView に前景グラデーションを追加しようとしています。すべて正常に動作しますが、スクロール後にグラデーションがレイアウトとともに移動します。この問題のスクリーンショットは次のとおりです。 アプリケーションの開始後: http://img819.imageshack.us/img819/6622/horizo ntalscroll.jpg およびスクロール後: http://img709.imageshack.us/img709/388/horizo ntalscroll2.jpg
xml のメイン レイアウト:
<RelativeLayout
android:id="@+id/RelativeLayout01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
android:background="@layout/backgroundgradient"
>
<include layout="@layout/header" />
<HorizontalScrollView android:id="@+id/ScrollView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scrollbars="none"
android:foreground="@layout/scrollforegrad"
android:background="@layout/scrollbgrgrad"
android:layout_below="@id/LayoutHeader"
>
<LinearLayout
android:id="@+id/ThemeContainer"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
</HorizontalScrollView>
そしてグラデーションxml:
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mainForegroundGrad"
>
<gradient
android:startColor="@color/scrollForegroundSide"
android:centerColor="@color/scrollForegroundCenter"
android:endColor="@color/scrollForegroundSide"
android:angle="0"
/>
<corners android:radius="0dp" />
</shape>
誰かがそのような問題を抱えていたり、解決方法を知っている場合は、共有してください:)よろしくお願いします。