大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
我的程序里面是用到了安卓的listview来显示数据,主要用SimpleAdapter适配器,然而怎么获取listview的item中的控件呢?就如说我这里做了一个显示地址管理。
创新互联建站服务项目包括长清网站建设、长清网站制作、长清网页制作以及长清网络营销策划等。多年来,我们专注于互联网行业,利用自身积累的技术优势、行业经验、深度合作伙伴关系等,向广大中小型企业、政府机构等提供互联网行业的解决方案,长清网站推广取得了明显的社会效益与经济效益。目前,我们服务的客户以成都为中心已经辐射到长清省份的部分城市,未来相信会继续扩大服务区域并继续获得客户的支持与信任!
而让我苦恼的是要怎么获取里面的删除控件呢?
一开始我想直接取出来然后给它设置监听器,运行奔溃了,后来想了想,也是,你的listview每个item的布局都是一样的,我怎么知道你是点击哪个的。
所这个还是要在listview被点击时调用addressListView.setOnItemClickListener(),应该在这方法中去给控件添加监听器。
这里非常有用,不就如说当你叫外卖或者网购的时候,里面有一个+、-控件。获得控件的原理跟这个是一样的。
接下来我跟大家分享一下:
item样式文件:address_item.xml:
android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > android:layout_width="match_parent" android:layout_height="wrap_content" > android:id="@+id/textView0" android:layout_width="20dp" android:layout_height="wrap_content" android:layout_marginLeft="15dp" android:layout_centerVertical="true" android:background="@drawable/company" /> android:id="@+id/CompanyName" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_toRightOf="@+id/textView0" android:layout_marginLeft="15dp" android:layout_centerVertical="true" android:text="沃尔玛" /> android:id="@+id/delAddress" android:layout_width="25dp" android:layout_height="30dp" android:layout_alignParentRight="true" android:layout_alignParentTop="true" android:layout_marginRight="20dp" android:background="@drawable/address_delete" /> android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="5dp"> android:id="@+id/textView1" android:layout_width="20dp" android:layout_height="wrap_content" android:layout_marginLeft="15dp" android:layout_centerVertical="true" android:background="@drawable/contact_person" /> android:id="@+id/ContactPersonName" android:layout_width="80dp" android:layout_height="wrap_content" android:layout_toRightOf="@+id/textView1" android:layout_marginLeft="15dp" android:layout_centerVertical="true" android:text="徐董" /> android:id="@+id/textView2" android:layout_width="20dp" android:layout_height="wrap_content" android:layout_toRightOf="@+id/ContactPersonName" android:layout_marginLeft="20dp" android:layout_centerVertical="true" android:background="@drawable/phone"/> android:id="@+id/PhoneNumer" android:layout_width="100dp" android:layout_height="wrap_content" android:layout_toRightOf="@+id/textView2" android:layout_marginLeft="15dp" android:layout_centerVertical="true" android:text="15766228209" /> android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="5dp" > android:id="@+id/textView3" android:layout_width="20dp" android:layout_height="wrap_content" android:layout_marginLeft="15dp" android:layout_centerVertical="true" android:background="@drawable/address" /> android:id="@+id/AddressDetail" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_toRightOf="@+id/textView3" android:layout_marginLeft="15dp" android:layout_centerVertical="true" android:text="广东省湛江市国际大厦" /> android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical" > android:id="@+id/p_w_picpathView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/dv" />
listview布局文件:addressmanage.xml
android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" android:background="@drawable/bg"> android:id="@+id/title" android:layout_width="fill_parent" android:layout_height="50dp" android:background="@drawable/bg_navigation" > android:id="@+id/textView1" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_centerVertical="true" android:layout_marginLeft="5dip" android:gravity="center" android:text="地址管理" android:textSize="20dip" /> android:id="@+id/AddressBack" android:layout_width="80dp" android:layout_height="50dp" android:layout_alignLeft="@+id/textView1" android:layout_alignParentBottom="true" android:layout_alignParentTop="true" > android:layout_width="20dp" android:layout_height="30dp" android:layout_alignParentLeft="true" android:layout_centerVertical="true" android:layout_marginLeft="20dp" android:layout_marginTop="10dp" android:background="@drawable/back" /> android:id="@+id/linearlayoutAddress" android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical" > android:id="@+id/addressListView" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="10dp" android:layout_marginRight="10dp" android:listSelector="#00000000" >
上面两个就是xml布局文件
接下来就是.java文件的部分主要代码:
addressListView = (ListView)findViewById(R.id.addressListView);
List
for (int i = 0; i < companys.length; i++) {
Map
listitem.put("company", companys[i]);
listitem.put("person",persons[i]);
listitem.put("phone", phones[i]);
listitem.put("address", address[i]);
listitems.add(listitem);
}
SimpleAdapter simpleAdapter = new SimpleAdapter(AdrressManageActivity.this, listitems, R.layout.address_item, new String[]{"company","person","phone","address"},new int[]{R.id.CompanyName,R.id.ContactPersonName,R.id.PhoneNumer,R.id.AddressDetail});
addressListView.setAdapter(simpleAdapter);
//设置焦点响应问题 同时要将 item 中的焦点 focusable 设置为 false
addressListView.setDescendantFocusability(ViewGroup.FOCUS_BLOCK_DESCENDANTS);
//设置listview中的哪个item被点击,然后获得删除按钮
addressListView.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView> arg0, View view,
int arg2, long arg3) {
// TODO Auto-generated method stub
TextView delButton = (TextView)view.findViewById(R.id.delAddress);
delButton.setOnClickListener(myListener);
}
});
上面加背景色的为最主要代码。
1、item的布局文件最好不要出现button和check这样的控件
2、要是用到点击事件,可以用TextView来代替。原因如下:
你的item中的布局文件最好不要用button或者check控件,因为你用了button或者check控件的话,item的focus就会失焦,因为button或者check控件优先了。所以你会点击listview的item没有反应。
3、清除item按下的背景颜色。
在listview的xml中加入: android:listSelector="#00000000"
4、获得item的点击事件
addressListView.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView> arg0, View view,
int arg2, long arg3) {
// TODO Auto-generated method stub
delButton = (TextView)view.findViewById(R.id.delAddress);
delButton.setOnClickListener(myListener);
}
});
其中view代表这个item的布局。所以通过方法view.findViewById(xxx);来获得你要的控件。
5、为你的控件设置监听器
如上:delButton.setOnClickListener(myListener);
6、你要做出什么响应就自己写啦。今天忧郁了很久,终于解决了。