這是我用Samsung GT-I9003L時遇到的一個奇怪問題。我有一個包含LinearLayout的ScrollView,裏面有不同的東西(ImageView,Button,EditText等等),它在2.3.3和4.2版本的模擬器中測試都是完美的。Android ScrollView overscroll indicator問題
<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);
但是,當我到達山頂或結束,輝光只是「出現」,它沒有動畫或
感謝變淡。提前爲您提供幫助!
我猜這是因爲三星在他們的手機中放置的UI(TouchWiz?)......它以某種方式覆蓋了Android的默認設置 – user219882
我不會懷疑這一點。每個製造商都應該遵守這些標準,但他們不這樣做。問題是,其他應用程序工作正常... –