首页 > 其他 > 详细

动态刷新页面(滚动页面)

时间:2015-12-16 23:06:10      阅读:302      评论:0      收藏:0      [点我收藏+]
 1 <!-- scroll        n. 卷轴,画卷;名册;卷形物-->
 2 <ScrollView
 3     android:layout_width="fill_parent"
 4     android:layout_height="fill_parent" >
 5 
 6     <LinearLayout
 7         android:id="@+id/ll"
 8         android:layout_width="fill_parent"
 9         android:layout_height="fill_parent"
10         android:orientation="vertical" >
11     </LinearLayout>
12 </ScrollView>

 

 1 public void onClick(View view) {
 2     
 3     // 添加一个TextView向llGroup
 4     
 5     // 定义一个textview对象
 6     TextView tv = new TextView(this);
 7     tv.setText("张三   女   34");
 8     
 9     // 把textview对象添加到linearlayout中
10     llGroup.addView(tv);
11 }

 

动态刷新页面(滚动页面)

原文:http://www.cnblogs.com/starman/p/5052539.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!