in Android Code Tips

Android Horizontal Scroll example

Android Horizontal Scroll tutorial – example

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:scrollbars="vertical">
<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent" android:layout_height="fill_parent">
<!-- A very fat view here -->
</HorizontalScrollView>
</ScrollView>
Share