码迷,mamicode.com
首页 > 移动开发 > 详细

Android 自定义Adapter 但listview 只显示第一条数据

时间:2014-05-12 23:36:45      阅读:386      评论:0      收藏:0      [点我收藏+]

标签:listview   android   layout   

   楼主让这个问题郁闷了一晚上。。。。。在logcat里明明显示adapter的getview方法里的list大于一条数据 ,但posotion却一直是0.。。。。运行后也只显示list[0]里面的数据。。。。最后的最后原来错误出在布局文件上 

  我以前的是这样的;

<ScrollView
        android:layout_width="fill_parent"     
        android:layout_height="wrap_content"
        >
	    
   <!-- listview -->   
			<ListView android:id="@+id/listview1" android:layout_width="fill_parent"
			android:layout_height="fill_parent" android:drawSelectorOnTop="false"
			android:background="@drawable/home_index_btn_d"
			android:fadingEdge="none"
			android:cacheColorHint="#00000000"
			
			android:scrollbars="vertical" />

    </ScrollView>
都是这个ScrollView惹的祸。。。去掉之后  就OK了  。。。。。。。。。。

Android 自定义Adapter 但listview 只显示第一条数据,布布扣,bubuko.com

Android 自定义Adapter 但listview 只显示第一条数据

标签:listview   android   layout   

原文地址:http://blog.csdn.net/fangchao3652/article/details/25564737

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!