码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2015-12-16 23:08:14      阅读:201      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!