溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Android項(xiàng)目中使用listview嵌套scrollveiw出現(xiàn)沖突怎么解決

發(fā)布時(shí)間:2020-11-21 15:17:37 來源:億速云 閱讀:128 作者:Leah 欄目:移動(dòng)開發(fā)

今天就跟大家聊聊有關(guān)Android項(xiàng)目中使用listview嵌套scrollveiw出現(xiàn)沖突怎么解決,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

一.使用網(wǎng)上用的動(dòng)態(tài)改變listview高度的方法

該方法只適用于item布局是LinearLayout布局的情況,不能是其他的,因?yàn)槠渌腖ayout(如RelativeLayout)沒有重寫onMeasure(),所以會(huì)在onMeasure()時(shí)拋出異常。所以使用限制較大。

public class Utility { 
public static void setListViewHeightBasedOnChildren(ListView listView) { 
//獲取ListView對應(yīng)的Adapter 
ListAdapter listAdapter = listView.getAdapter();  
if (listAdapter == null) { 
// pre-condition 
return; 
} 
 
int totalHeight = 0; 
for (int i = 0, len = listAdapter.getCount(); i < len; i++) { //listAdapter.getCount()返回?cái)?shù)據(jù)項(xiàng)的數(shù)目 
View listItem = listAdapter.getView(i, null, listView); 
listItem.measure(0, 0); //計(jì)算子項(xiàng)View 的寬高 
totalHeight += listItem.getMeasuredHeight(); //統(tǒng)計(jì)所有子項(xiàng)的總高度 
} 
 
ViewGroup.LayoutParams params = listView.getLayoutParams(); 
params.height = totalHeight + (listView.getDividerHeight() * (listAdapter.getCount() - 1)); 
//listView.getDividerHeight()獲取子項(xiàng)間分隔符占用的高度 
//params.height最后得到整個(gè)ListView完整顯示需要的高度 
listView.setLayoutParams(params); 
} 
} 

二.網(wǎng)上有帖子說在ScrollView中添加一屬性 android:fillViewport="true" ,這樣就可以讓ListView全屏顯示了。在我機(jī)器上測試失敗了。

三.重寫ListView、gridView(推薦)

重寫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); 
  } 
} 

重寫GridView:

/** 
 *自定義gridview,解決ScrollView中嵌套gridview顯示不正常的問題(1行) 
 */ 
public class MyGridView extends GridView{ 
   public MyGridView(Context context, AttributeSet attrs) {  
      super(context, attrs);  
    }  
    
    public MyGridView(Context context) {  
      super(context);  
    }  
    
    public MyGridView(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);  
    }  
} 

看完上述內(nèi)容,你們對Android項(xiàng)目中使用listview嵌套scrollveiw出現(xiàn)沖突怎么解決有進(jìn)一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI