可垂直和水平滚动的视图

 1 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
 2     android:layout_width="match_parent"
 3     android:layout_height="match_parent" >
 4 
 5     <HorizontalScrollView
 6         android:layout_width="match_parent"
 7         android:layout_height="wrap_content" >
 8 
 9         <LinearLayout
10             android:layout_width="match_parent"
11             android:layout_height="wrap_content"
12             android:orientation="vertical" >
13 
14             <ImageView
15                 android:layout_width="wrap_content"
16                 android:layout_height="wrap_content"
17                 android:src="@drawable/f1" />
18         </LinearLayout>
19     </HorizontalScrollView>
20 
21 </ScrollView>

 

posted @ 2015-03-26 20:57  陶修瑕  阅读(162)  评论(0编辑  收藏  举报