天天看點

【android基礎】之Android控件之ScrollView探究

ScrollView滾動視圖是指當擁有很多内容,螢幕顯示不完時,需要通過滾動跳來顯示的視圖。ScrollView隻支援垂直滾動。

下面為執行個體:

main.xml布局檔案:

<?xml version="1.0" encoding="utf-8"?>

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"

    android:layout_width="fill_parent"

    android:layout_height="fill_parent"

    android:scrollbars="vertical">

    <LinearLayout android:orientation="vertical"

        android:layout_width="fill_parent"

        android:layout_height="fill_parent">

        <ImageView android:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:src="@drawable/p1"

            android:layout_gravity="center_horizontal"/>

    </LinearLayout>

</ScrollView>

效果圖:

繼續閱讀