Down/Up button?
The ScrollView' xml is below:
Using xml Syntax Highlighting
- <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- id="@+id/scrollview">
- <LinearLayout id="@+id/linearlayout"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content">
- <TextView id="@+id/text"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/sc_text2"/>
- </LinearLayout>
- </ScrollView>
Parsed in 0.002 seconds, using GeSHi 1.0.8.4
The TextView has 30 rows character. If I click down button, the
ScrollView will scroll it with default interval value(may be it's 8
rows).
How I can chanage the interval value, such as one row.

