天天看點

Android開發————ListView内部Item高度設定

1、前言

從谷歌那裡找到的ScrollView嵌套ListView隻顯示一行的解決辦法相信很多人都遇到過,然後大部分都是用這位部落客的辦法解決的吧

剛開始我也是用這個辦法解決的,首先感謝這位哥的大私奉獻,貼上位址

http://blog.csdn.net/p106786860/article/details/10461015

2、解決的核心代碼

[html]  view plain copy

Android開發————ListView内部Item高度設定
Android開發————ListView内部Item高度設定
  1. public void setListViewHeightBasedOnChildren(ListView listView) {     
  2.         // 擷取ListView對應的Adapter     
  3.         ListAdapter listAdapter = listView.getAdapter();     
  4.         if (listAdapter == null) {     
  5.             return;     
  6.         }     
  7.         int totalHeight = 0;     
  8.         for (int i = 0, len = listAdapter.getCount(); i < len; i++) {     
  9.             // listAdapter.getCount()傳回資料項的數目     
  10.             View listItem = listAdapter.getView(i, null, listView);     
  11.             // 計算子項View 的寬高     
  12.             listItem.measure(0, 0);      
  13.             // 統計所有子項的總高度     
  14.             totalHeight += listItem.getMeasuredHeight();      
  15.         }     
  16.         ViewGroup.LayoutParams params = listView.getLayoutParams();     
  17.         params.height = totalHeight+ (listView.getDividerHeight() * (listAdapter.getCount() - 1));     
  18.         // listView.getDividerHeight()擷取子項間分隔符占用的高度     
  19.         // params.height最後得到整個ListView完整顯示需要的高度     
  20.         listView.setLayoutParams(params);     
  21.     }     

這個代碼讓控件去計算Listview自己的高度然後設定這個Listview的高度

但是這個代碼裡面有一個問題,就是這個當你的ListView裡面有多行的TextView的話,ListView的高度就會計算錯誤,它隻算到了一行TextView的高度,

這個問題在so上的概述為以下:

http://stackoverflow.com/questions/14386584/getmeasuredheight-of-textview-with-wrapped-text

3、終極解決辦法

這個問題頭疼了一陣後,查找了一下,應該重寫一個TextView的onMeasure方法比較好解決

代碼有

[java]  view plain copy

Android開發————ListView内部Item高度設定
Android開發————ListView内部Item高度設定
  1. @Override  
  2.     protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {  
  3.         super.onMeasure(widthMeasureSpec, heightMeasureSpec);  
  4.         Layout layout = getLayout();  
  5.         if (layout != null) {  
  6.             int height = (int)FloatMath.ceil(getMaxLineHeight(this.getText().toString()))  
  7.                     + getCompoundPaddingTop() + getCompoundPaddingBottom();  
  8.             int width = getMeasuredWidth();              
  9.             setMeasuredDimension(width, height);  
  10.         }  
  11.     }  
  12.     private float getMaxLineHeight(String str) {  
  13.         float height = 0.0f;  
  14.         float screenW = ((Activity)context).getWindowManager().getDefaultDisplay().getWidth();  
  15.         float paddingLeft = ((LinearLayout)this.getParent()).getPaddingLeft();  
  16.         float paddingReft = ((LinearLayout)this.getParent()).getPaddingRight();  
  17. //這裡具體this.getPaint()要注意使用,要看你的TextView在什麼位置,這個是拿TextView父控件的Padding的,為了更準确的算出換行  
  18.  int line = (int) Math.ceil( (this.getPaint().measureText(str)/(screenW-paddingLeft-paddingReft))); height = (this.getPaint().getFontMetrics().descent-this.getPaint().getFontMetrics().ascent)*line; return height;}  

上面的代碼完成更能為,在ListView開始測量時,測量到TextView時,就調用我們的onMeasure方法,我們就可以測量字型的總寬度除與去掉邊距的螢幕的大小,就可以算出文字要幾行來顯示,然後測量字型的高度*行數可以得到字型的總高度,然後在加上上下邊距就是TextView真正的高度,然後setMeasuredDimension進去就可以計算出正确的值出來。

繼續閱讀