ScrollView滚动视图

滚动视图由FrameLayout派生,是一个用于为普通组件添加滚动条的组件。它其中最多只能包含一个组件,而作用就是为该组件添加垂直的滚动条。它甚至不能被称为真正的容器。

默认情况下是添加垂直滚动条,如果需要添加水平滚动哦他,可以借助另一个滚动视图:HorizontalScrollView来实现。

xml

<?xml version="1.0" encoding="utf-8"?>
<!-- 定义ScrollView,为里面的组件添加垂直滚动条 -->
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
	android:layout_width="fill_parent"
	android:layout_height="fill_parent"
	>
<!-- 定义HorizontalScrollView,为里面的组件添加水平滚动条 -->	
<HorizontalScrollView
	android:layout_width="fill_parent" 
	android:layout_height="wrap_content">
<LinearLayout android:orientation="vertical"
	android:layout_width="fill_parent"
	android:layout_height="fill_parent">
<TextView android:layout_width="wrap_content"
	android:layout_height="wrap_content" 
	android:text="滚动视图滚动视图滚动视图"
	android:textSize="30dp" />
<TextView android:layout_width="wrap_content"
	android:layout_height="wrap_content" 
	android:text="滚动视图滚动视图滚动视图"
	android:textSize="30dp" />
<TextView android:layout_width="wrap_content"
	android:layout_height="wrap_content" 
	android:text="滚动视图滚动视图滚动视图"
	android:textSize="30dp" />
<TextView android:layout_width="wrap_content"
	android:layout_height="wrap_content" 
	android:text="滚动视图滚动视图滚动视图"
	android:textSize="30dp" />
<TextView android:layout_width="wrap_content"
	android:layout_height="wrap_content" 
	android:text="滚动视图滚动视图滚动视图"
	android:textSize="30dp" />
<TextView android:layout_width="wrap_content"
	android:layout_height="wrap_content" 
	android:text="滚动视图滚动视图滚动视图"
	android:textSize="30dp" />
<TextView android:layout_width="wrap_content"
	android:layout_height="wrap_content" 
	android:text="滚动视图滚动视图滚动视图"
	android:textSize="30dp" />
<TextView android:layout_width="wrap_content"
	android:layout_height="wrap_content" 
	android:text="滚动视图滚动视图滚动视图"
	android:textSize="30dp" />
<TextView android:layout_width="wrap_content"
	android:layout_height="wrap_content" 
	android:text="滚动视图滚动视图滚动视图"
	android:textSize="30dp" />
<TextView android:layout_width="wrap_content"
	android:layout_height="wrap_content" 
	android:text="滚动视图滚动视图滚动视图"
	android:textSize="30dp" />	
<TextView android:layout_width="wrap_content"
	android:layout_height="wrap_content" 
	android:text="滚动视图滚动视图滚动视图"
	android:textSize="30dp" />
<TextView android:layout_width="wrap_content"
	android:layout_height="wrap_content" 
	android:text="滚动视图滚动视图滚动视图"
	android:textSize="30dp" />
<TextView android:layout_width="wrap_content"
	android:layout_height="wrap_content" 
	android:text="滚动视图滚动视图滚动视图"
	android:textSize="30dp" />					
</LinearLayout>
</HorizontalScrollView>
</ScrollView>


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