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

android学习之LayoutInflater的用法,在myAdapter getView()里将多个TextView组件压缩成一个View控件,并在listView里显示

时间:2015-07-19 21:30:32      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:

 1、在LayoutInflater通常有下面2种初始化的方法,在Active里调用时很容易。

   1、  LayoutInflater inflater=LayoutInflater.from(context);

   2、	 LayoutInflater inflater = (LayoutInflater)context.getSystemService
			      (Context.LAYOUT_INFLATER_SERVICE);             

  

 2、创建myAdapter类时候在getView()方法里使用LayoutInflater时,通常将MainActivity传进来,将Context context传进,这样在getView()方法里时候就可以用上面的方法初始化。对于getview()的参数,查api文档很抽象,通过在代码里设置个断点在内存里查看参数发现,parent就是Listview。convertView是listview

的缓存(查资料所得)。

public View getView(int position, View convertView, ViewGroup parent) {
		// TODO Auto-generated method stub
		
		 LayoutInflater inflater=LayoutInflater.from(context);//MainActivity.inflater;
//		 LayoutInflater inflater = (LayoutInflater)context.getSystemService
//			      (Context.LAYOUT_INFLATER_SERVICE);

		View view=inflater.inflate(R.layout.item2, null);
//这里是将item2.xml传入到了view对象,因此后面才可以用view.findVIewById方法,主函数里的SetContentView(R.layout.activity_main)
也是加载xml,将当前activity显示该//xml里的内容,又因为主函数activity继承View的,它其实是view的一个容器,
因此主函数里可以直接用findVIewById方法,只能查找activity_main里的空间的id,因此如果想在其他类用
activity_main里的
控件,可以将MainActivity act的形式当作类的成员传进来,再用act.findViewById();
		TextView text=(TextView) view.findViewById(R.id.tv_name);		
		text.setText(personlist.get(position).getName());
		TextView text2=(TextView) view.findViewById(R.id.tv_money);
		text2.setText(personlist.get(position).getMoney()+"");

          TextView text0=new TextView(context);
          text0.setText("hello");
       return view;
//这里的返回值时如果用view.findViewById后的控件,如果多个控件则要么返回view,要么返回和这几个控件无关的控件如text0,
不能返回其中的一个,否则会出现异常;当然如果只findViewById一个控件时候,可以返回这个控件。
}

  

android学习之LayoutInflater的用法,在myAdapter getView()里将多个TextView组件压缩成一个View控件,并在listView里显示

标签:

原文地址:http://www.cnblogs.com/bokeofzp/p/4659446.html

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