滚动视图(ScrollView、HorizontalScrollView)

<?xml version="1.0" encoding="utf-8" ?>
<HorizontalScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="滚动视图"
android:textSize="30dp"
/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/huanhuan"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="只支持垂直滚动"
android:textSize="30dp"
/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/nini"
/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/jinjin"
/>
</LinearLayout>
</HorizontalScrollView>

你可能感兴趣的:(滚动视图(ScrollView、HorizontalScrollView))