欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android 中ScrollView與ListView沖突問題的解決辦法

 更新時(shí)間:2017年10月09日 15:09:26   作者:三杯五岳  
這篇文章主要介紹了Android 中ScrollView與ListView沖突問題的解決辦法的相關(guān)資料,希望通過本文能幫助到大家,讓大家掌握解決問題的辦法,需要的朋友可以參考下

Android 中ScrollView與ListView沖突問題的解決辦法

自定義MyListView

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

在xml布局中直接用MyListView替換ListView即可使用

如有疑問請留言或者到本站社區(qū)交流討論,感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

相關(guān)文章

最新評論