菜鸟之初 Scrollview

来源:互联网 发布:zk和nginx 编辑:程序博客网 时间:2024/06/06 05:15
<?xml version="1.0" encoding="utf-8"?><LinearLayout    xmlns:android="http://schemas.android.com/apk/res/android"     android:layout_width="match_parent"      android:layout_height="match_parent"     android:orientation="vertical">    <HorizontalScrollView        android:layout_width="wrap_content"        android:layout_height="200dp"        >        <LinearLayout            android:layout_width="wrap_content"            android:layout_height="match_parent"            android:orientation="horizontal"            >            <android.support.v4.view.ViewPager                android:layout_width="400dp"                android:layout_height="match_parent"                android:background="#aaffff"/>            <View                android:layout_width="800dp"                android:layout_height="match_parent"                android:background="#ffff00"/>        </LinearLayout>    </HorizontalScrollView>
        
 <!--<ScrollView 之下必有子布局>-->
<ScrollView android:layout_width="match_parent" android:layout_height="wrap_content"> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical"> <View android:layout_width="match_parent" android:layout_height="400dp" android:background="#00ff00" /> <View android:layout_width="match_parent" android:layout_height="400dp" android:background="#ffffaa" /> </LinearLayout> </ScrollView>

</LinearLayout>

图片分为两拦,水平滑动,垂直滑动另一栏

原创粉丝点击