歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Android開發:實現一個Activity存在水平和垂直滾動條

  1. <ScrollView xmlns:Android="http://schemas.android.com/apk/res/android"  
  2.         android:layout_width="match_parent"   
  3.         android:layout_height="match_parent"  
  4.         android:scrollbars="vertical" >    
  5.     <HorizontalScrollView  
  6.         android:layout_width="wrap_content"   
  7.         android:layout_height="wrap_content"  
  8.         >          
  9.     <LinearLayout   
  10.         android:orientation="vertical"  
  11.         android:layout_width="fill_parent"  
  12.         android:layout_height="fill_parent"  
  13.         >                      
  14.     </LinearLayout>  
  15.     </HorizontalScrollView>  
  16. </ScrollView>  

根標簽是ScrollView下面的子標簽是HorizontalScrollView,然後HorizontalScrollView下面就是你自己的布局了。

Ps:Scrollview和HorizontalScrollView標簽下面都只能嵌入一個標簽  

Copyright © Linux教程網 All Rights Reserved