0

これは、Samsung GT-I9003L で発生している奇妙な問題です。内部にさまざまなもの (ImageView、Button、EditText など) を含む LinearLayout を含む ScrollView があり、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

まったく同じ問題が発生しています。オーバースコールは、Samsung Galaxy 2 (Touchwiz) では機能しないようですが、HTC One X 携帯電話でも機能するようです (古い HTC は機能するようです)。

おそらく伸縮性のあるスクロールバーなどのために、ScrollViewの実装を独自のものに置き換えたのではないかと思われます。

于 2013-02-12T09:48:56.963 に答える