亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

Android應用中ListView與ScrollView出現沖突如何解決

發布時間:2020-12-04 16:22:05 來源:億速云 閱讀:354 作者:Leah 欄目:移動開發

這期內容當中小編將會給大家帶來有關Android應用中ListView與ScrollView出現沖突如何解決,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

Android ListView與ScrollView沖突的解決方法總結

眾所周知ListView與ScrollView都具有滾動能力,對于這樣的View控件,當ScrollView與ListView相互嵌套會成為一種問題:

 問題一:ScrollView與ListView嵌套導致ListView顯示不全面

 問題二:ScrollView不能正常滑動

解決方式一:

ScrollView+LinearLayout+ListView可以換成ScrollView+LinearLayout+LinearLayout,對于開發中,ScrollView所能滾動的樣式形式各異,另外的話,ScrollView所顯示的內容肯定不會太多,因此這種方案是合理而且可選的

解決方式二:

同樣是替換:ListView具有HeaderView與FooterView2部分,因此,在非下拉刷新,上拉加載的需求中,完全可以使用ListView來代替ScrollView,因此是合理可選的方案

解決方式三:

主動計算和設置ListView的高度,這樣的結果最終得出類似解決方案一效果,具體來說缺點是大材小用,但也是合理的解決辦法。

public class Utility { 
    public static void setListViewHeightBasedOnChildren(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); 
    } 
  } 

解決方式四:

復寫ScrollView,從事件方向進行處理,缺點是靈活性不夠好、

public class ListScrollView extends ScrollView { 
 private List list = new ArrayList(); 
 private int scrollPaddingTop; // scrollview的頂部內邊距 
 private int scrollPaddingLeft;// scrollview的左側內邊距 
 private int[] scrollLoaction = new int[2]; // scrollview在窗口中的位置 
 private final static int UPGLIDE = 0; 
 private final static int DOWNGLIDE = 1; 
 private int glideState; 
 public ListScrollView(Context context, AttributeSet attrs) { 
 super(context, attrs); 
 } 
 private int downY = 0; 
 private int moveY = 0; 
  
 @Override 
 public boolean dispatchTouchEvent(MotionEvent ev) { 
 switch (ev.getAction()) { 
 case MotionEvent.ACTION_DOWN: 
  downY = (int) ev.getY(); 
  //System.out.println("actiondown" + ev.getY()); 
  break; 
 case MotionEvent.ACTION_MOVE: 
  moveY= (int) ev.getY(); 
  //System.out.println("move" + moveY + "down" + downY); 
  if((moveY - downY) >= 0) { 
  //System.out.println("'''''''''DOWNGLIDE'''''''''''"); 
  glideState = DOWNGLIDE; 
  } else { 
  //System.out.println("'''''''''UPGLIDE'''''''''''"); 
  glideState = UPGLIDE; 
  } 
  break; 
 case MotionEvent.ACTION_UP: 
 default: 
  break; 
 } 
 return super.dispatchTouchEvent(ev); 
 } 
 @Override 
 public boolean onInterceptTouchEvent(MotionEvent ev) { 
 // 該事件的xy是以scrollview的左上角為00點而不是以窗口為00點 
 int x = (int) ev.getX() + scrollLoaction[0]; 
 int y = (int) ev.getY() + scrollLoaction[1]; 
 for (int i = 0; i < list.size(); i++) { 
  ListView listView = list.get(i); 
  int[] location = new int[2]; 
  listView.getLocationInWindow(location); 
  int width = listView.getWidth(); 
  int height = listView.getHeight(); 
  // 在listview的位置之內則可以滑動 
  if (x >= location[0] + scrollPaddingLeft 
   && x <= location[0] + scrollPaddingLeft + width 
   && y >= location[1] + scrollPaddingTop 
   && y <= location[1] + scrollPaddingTop + height) { 
  //System.out.println(glideState); 
  if(( (listView.getLastVisiblePosition() == (listView.getCount()-1)) && (glideState == UPGLIDE) ) ) { 
   //System.out.println("up"); 
   break; 
  } 
  if(( (listView.getFirstVisiblePosition() == 0) && (glideState == DOWNGLIDE))) { 
   //System.out.println("down"); 
   break; 
  } 
  return false; //讓子控件直接處理 
  } 
 } 
 return super.onInterceptTouchEvent(ev); 
 } 
 @Override 
 public boolean onTouchEvent(MotionEvent ev) { 
 return super.onTouchEvent(ev); 
 } 
  
  
 private void findAllListView(View view) { 
 if (view instanceof ViewGroup) { 
  int count = ((ViewGroup) view).getChildCount(); 
  for (int i = 0; i < count; i++) { 
  if (!(view instanceof ListView)) { 
   findAllListView(((ViewGroup) view).getChildAt(i)); 
  } 
  } 
  if (view instanceof ListView) { 
  list.add((ListView) view); 
  } 
 } 
 } 
 @Override 
 protected void onDraw(Canvas canvas) { 
 super.onDraw(canvas); 
 scrollPaddingTop = getTop(); 
 scrollPaddingLeft = getLeft(); 
 getLocationInWindow(scrollLoaction); 
 } 
 @Override 
 protected void onLayout(boolean changed, int l, int t, int r, int b) { 
 super.onLayout(changed, l, t, r, b); 
 if (this.getChildCount() != 1) { 
  try { 
  throw new ScrollException(); 
  } catch (ScrollException e) { 
  e.printStackTrace(); 
  } 
 } 
 list.clear(); 
 findAllListView(this.getChildAt(0)); 
 } 
} 

上述就是小編為大家分享的Android應用中ListView與ScrollView出現沖突如何解決了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

福安市| 浦江县| 富川| 朝阳区| 抚远县| 河津市| 英吉沙县| 云阳县| 信阳市| 洛宁县| 包头市| 南川市| 定兴县| 龙口市| 当雄县| 缙云县| 红原县| 两当县| 平山县| 荥阳市| 安阳市| 平舆县| 津市市| 乐都县| 新津县| 廉江市| 仙桃市| 浦江县| 石家庄市| 米泉市| 福泉市| 纳雍县| 广东省| 天门市| 白山市| 九龙城区| 仁化县| 苏州市| 会理县| 太湖县| 澄江县|