我正在尝试在 HorizontallScrollView 上添加前景渐变。一切正常,但滚动渐变随着布局移动后。这是此问题的屏幕截图:应用程序启动后:http://img819.imageshack.us/img819/6622/horizontalscroll.jpg滚动 后:http: //img709.imageshack.us/img709/388/horizontalscroll2.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>
如果有人有这样的问题或知道如何解决,请分享:)提前谢谢。