【安卓】在ListView中嵌套ListView的事件处理

本文详细阐述了解决嵌套ListView滑动问题的方法,包括使用自定义ListView调整子ListView尺寸以实现全屏显示,并通过优化TextView设置减少性能消耗。同时,文章还讨论了在ListView中展示文本时如何适配电话号码和HTTP链接的识别,以提升用户体验。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

转自:http://my.oschina.net/zhibuji/blog/70892


前天在工作中遇到在ListView中的Item需要用ListView来展现处理后的内容,然后就遇到了一个很头疼的问题,作为Item的ListView没法进行滑动,而且显示也不正常,只是显示几个子Item。不能将子Item全部显示,原因是在控件绘制出来之前要对ListView的大小进行计算,要解决将子ListView全部显示出来的问题,就是重新计算一下其大小告知系统即可。后面这个问题比较好解决,网上已经给出解决方案:

前辈们给出了一个方法,重新计算子ListView的大小,然后在设置本ListView的Adapter之后运行这个方法就好了,具体代码如下:

    

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/**
 
      * 设置Listview的高度
 
      */ 
 
     public void setListViewHeight(ListView listView) {  
 
         ListAdapter listAdapter = listView.getAdapter();   
 
         if (listAdapter == null ) {  
 
             return ;  
 
         }  
 
         int totalHeight = 0 ;  
 
         for ( int i = 0 ; i < listAdapter.getCount(); i++) {  
 
             View listItem = listAdapter.getView(i, null , listView);  
 
             listItem.measure( 0 , 0 );  
 
             totalHeight += listItem.getMeasuredHeight();  
 
         }  
 
         ViewGroup.LayoutParams params = listView.getLayoutParams();  
 
         params.height = totalHeight + (listView.getDividerHeight() * (listAdapter.getCount() - 1 ));  
 
         listView.setLayoutParams(params); 
 
     }

但是这个方法设置的item的Layout必须是带有onMeasure()方法的控件,否则在计算的时候会报错,建议使用LinearLayout

再一个思路相同,但是,不是额外做方法来实现onMeasure()方法的计算LIstView的大小,而是自己继承ListView,重写ListView的onMeasure()方法,来自己计算ListView的高度,然后再xml中直接使用这个自定义的ListView就可以了。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
public class MyListView extends ListView {
 
     public  MyListView  (Context context, AttributeSet attrs) {
 
         super (context, attrs);
 
     }
 
     public  MyListView  (Context context) {
 
         super (context);
 
     }
 
     public  MyListView  (Context context, AttributeSet attrs, int defStyle) {
 
         super (context, attrs, defStyle);
 
     }
 
     @Override
 
     public void onMeasure( int widthMeasureSpec, int heightMeasureSpec) {
 
         int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2 ,
 
                 MeasureSpec.AT_MOST);
 
         super .onMeasure(widthMeasureSpec, expandSpec);
 
     }
 
}

这是解决让作为Item的ListView显示全部内容的方案,但是有些时候我们是想让作为Item的ListView不用全部显示,而是可以进行滑动,要解决这个问题就需要了解一下android对事件的分发机制了

我的解决方案是集成ListView,重写interceptTouchEvent使其返回false来取消父ListView对触摸事件的拦截,将触摸事件分发到子View来处理。然后在使用的时候,将其作为父ListView使用,就可以使子ListView可以滑动了。思想来源于下面链接的6楼

http://www.eoeandroid.com/thread-3597-1-1.html

 

具体自定义父ListView代码   : 

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
public class ParentListView extends ListView {
 
public ParentListView(Context context) {
 
super (context);
 
// TODO Auto-generated constructor stub
 
}
 
public ParentListView(Context context, AttributeSet attrs, int defStyle) {
 
super (context, attrs, defStyle);
 
// TODO Auto-generated constructor stub
 
}
 
public ParentListView(Context context, AttributeSet attrs) {
 
super (context, attrs);
 
// TODO Auto-generated constructor stub
 
}
//将 onInterceptTouchEvent的返回值设置为false,取消其对触摸事件的处理,将事件分发给子view
 
@Override
 
public boolean onInterceptTouchEvent(MotionEvent ev) {
 
// TODO Auto-generated method stub
 
return false ;
 
}
 
}

xml文件:
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<? xml version = "1.0" encoding = "utf-8" ?>
< LinearLayout xmlns:android = "http://schemas.android.com/apk/res/android"
     android:layout_width = "fill_parent"
     android:layout_height = "fill_parent"
     android:orientation = "vertical" >
<!-- 这里做demo用,直接使用了android中的ListActivity-->
     < i.test.ParentListView android:id = " @android :id/list"
         android:layout_width = "fill_parent"
         android:layout_height = "fill_parent"
         android:dividerHeight = "2dip"
         android:scrollbars = "none"
         />
 
</ LinearLayout >

activity代码如下:
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
public class ListviewActivity extends ListActivity {
     /** Called when the activity is first created. */
private ListView mLv; //这个ListView就是自定义的View
private ParentAdapter adapter;
private final static String[] array = new String[]{ "1" , "2" , "3" , "4" , "5" , "6" , "7" , "8" , "9" , "10" , "11" , "12" , "13" , "14" };
     @Override
     public void onCreate(Bundle savedInstanceState) {
         super .onCreate(savedInstanceState);
         setContentView(R.layout.main);
         mLv = getListView();
         adapter = new ParentAdapter();
         mLv.setAdapter(adapter);
         
     }
     private class ParentAdapter extends BaseAdapter{
 
@Override
public int getCount() {
// TODO Auto-generated method stub
return Array.getLength(array);
}
 
@Override
public Object getItem( int position) {
// TODO Auto-generated method stub
return array[position];
}
 
@Override
public long getItemId( int position) {
// TODO Auto-generated method stub
return position;
}
 
@Override
public View getView( int position, View convertView, ViewGroup parent) {
// TODO Auto-generated method stub
View view;
if (position == 5 ){
view = View.inflate(getApplicationContext(), R.layout.item, null );
ListView lv = (ListView) view.findViewById(R.id.lv);
ArrayAdapter<String> mAdapter = new ArrayAdapter<String>(ListviewActivity. this , android.R.layout.simple_list_item_1, new String[]{ "a" , "b" ,
"c" , "d" , "e" , "f" , "g" });
lv.setAdapter(mAdapter);
}
else {
TextView  tv = new TextView(getApplicationContext());
tv.setText(array[position]);
tv.setTextSize( 30 );
view = tv;
}
return view;
}
    
     }
}

上面的方法同样适合在ScrollView中嵌套可以滑动View的情况。

后记:2013.04.10
今天登录oschian看到有人提到我,打开消息一看,是对这篇文字的评论,很高兴我写的东西对别人有所帮助。评论人 @jimmy.zhao ,谢谢你让我知道,我帮助了你,这是博客写下去的动力。

这篇文字是在我毕业之后刚入职第二天解决的问题,话说这个问题困扰前面的人有两个月了,我来了之后就把这个坑让我填,前辈说在网上找的所有方案都是已经有牛人给出解决方案。都这么说,但是没有一个人说解决方案是什么,于是让我研究了下。不能说我这篇文字是最早解决这个嵌套滑动问题的,但是如你搜一下解决滑动嵌套问题的帖子基本都在我这篇之后,先自己小骄傲下。

下面说说我在使用这种方法解决了这个问题之后遇到的问题(好像有点绕。。但攻城狮不怕哈),希望能引起后来人的注意:
问题出在一个月之后,根据项目需求,外面的ListView,即父ListView中的条目展示文本数字时需要加入对电话号码和HTTP链接的识别。即:如果是手机号码,点击之后进入拨号盘界面。大家知道,这个很简单,只要在TextView中设置一个简单的属性就好了。然后我的问题就出现,因为父ListView的触摸事件交给了子view,如果子view中的TextView带有这种隐式的点击事件,就会造成父ListView的卡顿现象。而且是相当卡顿。于是在项目中,还是使用了固定子ListView大小,直接使用系统的ListView不再重写父ListView的onInterceptTouchEvent事件。将展示更多,作为加载来处理。还有一个就是在使用TextView的时候,尽量避免使用Html.from()来让TextView支持简单html标签。这个太耗性能。用MAT一看便知,不多说。希望对有时间看本文一眼的人有所帮助。




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值