0

这是我的三星 GT-I9003L 遇到的一个奇怪问题。我有一个 ScrollView,其中包含一个带有不同内容(ImageView、Button、EditText 等)的 LinearLayout,并且在 2.3.3 和 4.2 版本的模拟器中测试时它工作得很好。

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/scroll_view"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:padding="16dp" >

        <ImageView
            android:id="@+id/image"
            android:layout_width="fill_parent"
            android:layout_height="200dp"
            android:contentDescription="@string/img_description"
            android:src="@drawable/ic_launcher" />

        <Button
            android:id="@+id/btn_camera"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="@string/add_new_btn_camera" />

        <Button
            android:id="@+id/btn_gallery"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="@string/add_new_btn_gallery" />

        <EditText
            android:id="@+id/name"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:ems="10"
            android:hint="@string/add_new_name_hint"
            android:inputType="text"
            android:maxLength="80" />

        [...]
    </LinearLayout>

</ScrollView>

问题是当我在手机上测试它时,过度滚动指示器(蓝色/橙色发光)根本不显示。我设法让他们使用这条线:

ScrollView addNewScroll = (ScrollView)findViewById(R.id.scroll_view);
addNewScroll.setOverScrollMode(ScrollView.OVER_SCROLL_IF_CONTENT_SCROLLS);

但是当我到达顶部或尽头时,光晕只是“出现”,它没有动画或淡入。

在此先感谢您的帮助!

4

1 回答 1

0

我们遇到了完全相同的问题。Overscolling 似乎不适用于三星 Galaxy 2 (Touchwiz),但也适用于 HTC One X 手机(旧款 H​​TC 似乎可以使用)。

怀疑他们用自己的替换了 ScrollView 实现,可能是为了弹性滚动条或其他东西。

于 2013-02-12T09:48:56.963 回答