今天学习了滚动视图
HorizontalScrollView 是水平方向的滚动视图,宽wrap_content,高match_content
ScrollView 是垂直方向的滚动视图,宽match_content,高wrap_content
水平方向实例
<HorizontalScrollView android:layout_width="wrap_content" android:layout_height="match_parent"> <LinearLayout android:layout_width="wrap_content" android:layout_height="match_parent"> <View android:id="@+id/iv_ba" android:layout_width="wrap_content" android:layout_height="300dp" android:background="@mipmap/ba" /> <View android:layout_width="wrap_content" android:layout_height="300dp" android:background="@mipmap/se" /> </LinearLayout> </HorizontalScrollView>
垂直方向实例
<ScrollView android:id="@+id/Sv_view" android:layout_width="match_parent" android:layout_height="wrap_content"> <LinearLayout android:layout_width="wrap_content" android:layout_height="match_parent" android:orientation="vertical"> <View android:layout_width="match_parent" android:layout_height="300dp" android:background="@mipmap/ba" /> <View android:layout_width="match_parent" android:layout_height="300dp" android:background="@mipmap/ow" /> <View android:layout_width="match_parent" android:layout_height="300dp" android:background="@mipmap/se"/> </LinearLayout> </ScrollView>
标签:总结,滚动,每日,视图,content,2023,wrap,match From: https://www.cnblogs.com/JJTyyds/p/17189266.html