91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Android項目中使用listview嵌套scrollveiw出現沖突怎么解決

發布時間:2020-11-21 15:17:37 來源:億速云 閱讀:130 作者:Leah 欄目:移動開發

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

一.使用網上用的動態改變listview高度的方法

該方法只適用于item布局是LinearLayout布局的情況,不能是其他的,因為其他的Layout(如RelativeLayout)沒有重寫onMeasure(),所以會在onMeasure()時拋出異常。所以使用限制較大。

public class Utility { 
public static void setListViewHeightBasedOnChildren(ListView listView) { 
//獲取ListView對應的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()返回數據項的數目 
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.getDividerHeight()獲取子項間分隔符占用的高度 
//params.height最后得到整個ListView完整顯示需要的高度 
listView.setLayoutParams(params); 
} 
} 

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

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

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

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

莲花县| 攀枝花市| 海淀区| 寻乌县| 沾化县| 开阳县| 剑川县| 小金县| 红原县| 若羌县| 达日县| 乌恰县| 定安县| 巧家县| 五河县| 牙克石市| 昌宁县| 砀山县| 华池县| 锦屏县| 衡山县| 康乐县| 云霄县| 榆中县| 宁波市| 子洲县| 曲沃县| 荆门市| 涟源市| 东莞市| 田阳县| 宾川县| 台山市| 汝州市| 全椒县| 泉州市| 依兰县| 门源| 杭锦旗| 阜阳市| 敖汉旗|