Android 自定义Adapter 但listview 只显示第一条数据这个问题郁闷了一晚上。在logcat里明明显示adapter的getview方法里的list大于一条数据 ,但posotion却一直是0.。运行后也只显示list[0]里面的数据。最后的最后原来错误出在布局文件上
-------------------------------------------分割线-------------------------------------------
Ubuntu 14.04 x64配置Android 4.4 kitkat编译环境的方法
Ubuntu 14.04 配置 Android SDK 开发环境
64位Ubuntu 11.10下Android开发环境的搭建(JDK+Eclipse+ADT+Android SDK详细)
Ubuntu 12.10 x64 安装 Android SDK
-------------------------------------------分割线-------------------------------------------
我以前的是这样的;
<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了