安卓 日常问题 工作日志20
listView 的 adapter ListView代码 <ListView android:id="@+id/areaList" android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" /> areaList.setAdapter(adapter); adapter 的 xml文件 <?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <ImageView android:layout_width="wrap_content" android:layout_height="match_parent" android:padding="@dimen/item_padding" android:src="@mipmap/ic_item_project" /> //一张照片而已