Android之ListView,AsyncTask,GridView,CardView,本地数据存储,SQLite数据库
版权声明:未经博主允许不得转载 补充 补充上一节,使用 ListView 是用来显示列表项的,使用 ListView 需要两个xml文件,一个是列表布局,一个是单个列表项的布局。如我们要在要显示系统所有app列表项时,需要左边app image 视图和右边文本视图。 一个是列表布局 all_app_list.xml <ListView android:id="@android:id/app_list" android:layout_width="match_parent" android:layout_height="wrap_content"/> 单个列表项的布局 list_item.xml <ImageView android:id="@+id/icon_image_view" android:layout_width="60dp" android:layout_height="60dp" android:src="@mipmap/ic_launcher"/> <TextView android:id="@+id/title_text_view" android:layout_width="match_parent" android:layout_height="60dp" android:text="@string/app_name" android:textSize=