Android 之 ScrollView(垂直滑动)组件
程序员文章站
2022-05-17 13:54:36
...
ScrollView 组件测试:
使用注意事项:1、必须设定宽度和高度
2、该组件里面只能包含一个子元素;(例如单一的布局组件)
测试代码如下:
使用注意事项:1、必须设定宽度和高度
2、该组件里面只能包含一个子元素;(例如单一的布局组件)
测试代码如下:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <!-- 垂直方向测试 --> <ScrollView android:layout_width="fill_parent" android:layout_height="wrap_content" > <!-- 水平方向测试 --> <HorizontalScrollView android:layout_width="wrap_content" android:layout_height="wrap_content" > <LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="20dp" android:text=".........................................................................................." /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="20dp" android:text="hellow2" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="20dp" android:text="hellow" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="20dp" android:text="hellow" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="20dp" android:text="hellow" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="80dp" android:text="hellow" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="80dp" android:text="hellow" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="80dp" android:text="hellow" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="80dp" android:text="HI!!!!" /> </LinearLayout> </HorizontalScrollView> </ScrollView> </LinearLayout>
上一篇: PHPExcel (一)初体验
下一篇: phpexcel扩展的使用
推荐阅读
-
Android组件之DrawerLayout实现抽屉菜单
-
Android中Toolbar随着ScrollView滑动透明度渐变效果实现
-
Android滑动组件悬浮固定在顶部效果
-
android开发之listView组件用法实例简析
-
Android四大组件之Service(服务)实例详解
-
Android编程四大组件之Activity用法实例分析
-
Android编程四大组件之BroadcastReceiver(广播接收者)用法实例
-
Android编程开发之ScrollView嵌套GridView的方法
-
Android编程开发之Spinner组件用法
-
Android开发控制ScrollView滑动速度的方法