• 解决ScrollView嵌到listView冲突问题


    方法一:

    把下面的方法放在绑定适配器操作的下面就行。

    /**
    * 重新计算ListView的高度,解决ScrollView和ListView两个View都有滚动的效果,在嵌套使用时起冲突的问题
    * @param listView
    */
    public void setListViewHeight(ListView listView) {

    // 获取ListView对应的Adapter

    ListAdapter listAdapter = listView.getAdapter();

    if (listAdapter == null) {
    return;
    }
    int totalHeight = 0;
    for (int i = 0, len = listAdapter.getCount(); i < len; i++) { // listAdapter.getCount()返回数据项的数目
    View listItem = listAdapter.getView(i, null, listView);
    listItem.measure(0, 0); // 计算子项View 的宽高
    totalHeight += listItem.getMeasuredHeight(); // 统计所有子项的总高度
    }

    ViewGroup.LayoutParams params = listView.getLayoutParams();
    params.height = totalHeight + (listView.getDividerHeight() * (listAdapter.getCount() - 1));

    listView.setLayoutParams(params);
    }

     方法二:

    重写listview

    public class MyListView extends ListView {
    
        public MyListView(Context context) {
            // TODO Auto-generated method stub
            super(context);
        }
    
        public MyListView(Context context, AttributeSet attrs) {
            // TODO Auto-generated method stub
            super(context, attrs);
        }
    
        public MyListView(Context context, AttributeSet attrs, int defStyle) {
            // TODO Auto-generated method stub
            super(context, attrs, defStyle);
        }
    
        @Override
        protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
            // TODO Auto-generated method stub
            int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2,
                    MeasureSpec.AT_MOST);
            super.onMeasure(widthMeasureSpec, expandSpec);
        }
    }

    注:

    mYoujiLinearLayout = (LinearLayout) mFragmentView.findViewById(R.id.home_jinghuayouji_show_layout);

    ListView外要套一个linearLayout布局mListView = (ListView) mYoujiLinearLayout.findViewById(R.id.home_jinghuayouji_show_layout_listview);

    要不会开在自定义适配器getCount()这个方法不往下执行

  • 相关阅读:
    日期计算
    普通二叉树转换成搜索二叉树
    每周行情
    virtualbox安装增强功能时【未能加载虚拟光盘】
    linux实用命令之如何移动文件夹及文件下所有文件
    Linux文件夹文件创建、删除
    php 克隆 clone
    function_exists (),method_exists()与is_callable()的区别
    webgrind安装使用详细说明
    windows下redis的安装配置和php扩展使用phpredis
  • 原文地址:https://www.cnblogs.com/niupi/p/5551875.html
Copyright © 2020-2023  润新知