码迷,mamicode.com
首页 > 移动开发 > 详细

Android 动态添加布局

时间:2016-06-03 01:06:19      阅读:443      评论:0      收藏:0      [点我收藏+]

标签:

 1  BaseAdapter adapter = new BaseAdapter() {
 2             @Override
 3             public int getCount() {
 4                 return 40;
 5             }
 6 
 7             @Override
 8             public Object getItem(int i) {
 9                 return null;
10             }
11 
12             @Override
13             public long getItemId(int i) {
14                 return i;
15             }
16 
17             @Override
18             public View getView(int i, View view, ViewGroup viewGroup) {
19                 LinearLayout line = new LinearLayout(MainActivity.this);
20                 line.setOrientation(LinearLayout.HORIZONTAL);
21                 ImageView image = new ImageView(MainActivity.this);
22                 image.setImageResource(R.drawable.user);
23                 TextView text = new TextView(MainActivity.this);
24                 text.setText("" + (i + 1) + "个列表项");
25                 text.setTextSize(20);
26                 text.setTextColor(Color.RED);
27                 line.addView(image);
28                 line.addView(text);
29                 return line;
30             }
31         };
ListView myList = (ListView)findViewById(R.id.myList);
 myList.setAdapter(adapter);

技术分享技术分享

Android 动态添加布局

标签:

原文地址:http://www.cnblogs.com/linhongquan/p/5554896.html

(1)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!