编程题笔记_精简版

基于适配器实现图文并茂的列表 activity_main.xml 1 2 3 4 5 <!-- 与适配器绑定的列表组件 --> <ListView android:id="@+id/listView" android:layout_width="match_parent" android:layout_height="match_parent" /> item.xml 1 2 3 4 5 6 7 8 9 10 11 12 <!-- 显示图片的组件 --> <ImageView android:id="@+id/image" android:layout_width="72sp" android:layout_height="72sp" android:contentDescription="@string/imageview" /> <!-- 显示文

编程题笔记

基于适配器实现图文并茂的列表 activity_main.xml,定义与适配器绑定的列表的布局 1 2 3 4 5 6 7 8 9 10 11 12 13 14 <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/main" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity">
0%