LoginSignup
1
1

More than 3 years have passed since last update.

[Android]ScrollViewでスクロールしたときにエフェクトを出す

Last updated at Posted at 2019-05-04

ScrollViewだと上端・下端でスクロールしたときにエフェクトが出ない。
次のようにoverScrollModeをalwaysに変更してやるとエフェクトが出るようになる。

<ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:overScrollMode="always">

    <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">
        <TextView
                android:text="SAMPLE TEXT"
                android:layout_margin="16dp"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"/>
    </LinearLayout>
</ScrollView>

scrollview (1).gif

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1