本文档为个人博客文档系统的备份版本、作者:小游、作者博客:点击访问
在使用listview的时候,我们必须用到adapt这个东西,adapt一般用于listview这种列表形式的类。它的作用就是用于数据和视图的适配。
首先我们创建一个样式用于显示内容 比如我创建item_study.xml
创建item样式
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:orientation="horizontal"
android:layout_margin="20dp"
android:layout_height="100dp">
<ImageView
android:id="@+id/item_image"
android:layout_width="50dp"
android:layout_height="50dp" />
<LinearLayout
android:layout_width="match_parent"
android:orientation