늦은 답변이지만 row별 높이는 알수 있습니다.
getMeasuredHeight() 로 높이를 알수 있습니다.저도 listview의 총 높이를 알고 싶어 검색하고 있는데 모르겠네요
로그인 유지
class IconicAdapter extends ArrayAdapter {
Activity context;
IconicAdapter(Activity context) {
super(context, R.layout.row, items);
this.context=context;
}
row.xml에 선언된 부분을 쓰기 떄문에
row.xml값으로 높이를 조절합니다
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:id="@+id/label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="30sp"
android:layout_marginBottom="15px"
android:layout_marginTop="15px"
/>
</LinearLayout>