您的位置:首页 > 其它

NestedScrollView

2015-11-19 17:28 169 查看
<android.support.v4.widget.NestedScrollView

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

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    android:padding="16dp">

    <LinearLayout

        android:layout_width="match_parent"

        android:layout_height="wrap_content"

        android:orientation="vertical">

        <TextView

            android:layout_width="match_parent"

            android:layout_height="wrap_content"

            android:textAppearance="?android:attr/textAppearance"

            android:text="@string/nested_scroll_long_text" />

        <android.support.v4.widget.NestedScrollView

            android:layout_width="match_parent"

            android:layout_height="200dp"

            android:padding="16dp">

            <TextView

                android:layout_width="match_parent"

                android:layout_height="wrap_content"

                android:textAppearance="?android:attr/textAppearance"

                android:text="@string/nested_scroll_long_text" />

        </android.support.v4.widget.NestedScrollView>

        <TextView

            android:layout_width="match_parent"

            android:layout_height="wrap_content"

            android:textAppearance="?android:attr/textAppearance"

            android:text="@string/nested_scroll_long_text" />

    </LinearLayout>

</android.support.v4.widget.NestedScrollView>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: