1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
   | * auto set ListView height  *   * @param listView  */ public static void setListViewHeightBasedOnChildren(ListView listView) { 	if (listView == null) 		return;
  	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); }
   |