1.HorizontalScrollView 水平滚动视图     , ScrollView   垂直滚动视图,  只能放一个控件,如果要放多个要使用布局管理器LinearLayout 。 

<HorizontalScrollView
    android:layout_width=\"match_parent\"
    android:layout_height=\"wrap_content\"
    android:id=\"@+id/h_scrolview\"

    >
  <TextView
      android:layout_width=\"match_parent\"
      android:layout_height=\"50dp\"
      android:textSize=\"10sp\"
      android:text=\"@string/content\"
      />

</HorizontalScrollView>
<ScrollView
    android:layout_width=\"match_parent\"
    android:layout_height=\"50dp\"
    >
    <LinearLayout
        android:layout_width=\"match_parent\"
        android:layout_height=\"50dp\"
        android:orientation=\"vertical\"
        >
        <TextView
        android:layout_width=\"match_parent\"
        android:layout_height=\"wrap_content\"
        android:textSize=\"20sp\"
        android:text=\"111111111111111\"
        />
        <TextView
            android:layout_width=\"match_parent\"
            android:layout_height=\"wrap_content\"
            android:textSize=\"20sp\"
            android:text=\"2222222222222222222\"
            />
    </LinearLayout>



</ScrollView>

 

java文件 添加滚动视图:

\"\"

 

收藏 打印