在我的应用程序中使用简单适配器未在 ListView 上显示图像
Posted
技术标签:
【中文标题】在我的应用程序中使用简单适配器未在 ListView 上显示图像【英文标题】:Images not displaying on ListView using simple adapter in my app 【发布时间】:2019-01-31 15:44:15 【问题描述】:我想制作一个简单的列表视图,它有 2 个文本视图和一个图像视图。 Textviews 显示正确的文本,但 imageview 显示在 xml 文件中设置的背景。
.java 文件:-
String laptops[] = "DELL Inspiron 15", "Mosiso smooth Matte Finish", "HP
455 ", "MicroMax 1160", "Asus Eeebook";
String keys[]="name","price","image"; //from array
int price[]=20000,30000,23980,40000,28000;
int images[]=
R.drawable.lap,R.drawable.lapt,R.drawable.lapt,R.drawable.lapto,R.drawable.laptop;
int x=R.drawable.lapt;
int[] to=R.id.textView3,R.id.textView4,R.id.imageView2;
ArrayList<HashMap<String,String>> al=new ArrayList<HashMap<String, String>>();
for(int i=0;i<5;i++)
HashMap<String,String> h=new HashMap<String, String>();
h.put("name",laptops[i]);
h.put("price",price[i]+" ");
h.put("image",images[i]+" ");
al.add(h);
ListView lv = (ListView) findViewById(R.id.list);
SimpleAdapter sa=new SimpleAdapter(this,al,R.layout.new_manual,keys,to);
lv.setAdapter(sa);
new_manual 是用于列表视图的资源文件。
new_manual.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_
android:layout_>
<TextView
android:id="@+id/textView3"
android:layout_
android:layout_
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:layout_marginStart="33dp"
android:layout_marginTop="92dp"
android:text="TextView"
android:layout_toLeftOf="@id/textView4"/>
<TextView
android:id="@+id/textView4"
android:layout_
android:layout_
android:layout_alignParentEnd="true"
android:layout_alignTop="@+id/textView3"
android:layout_marginEnd="137dp"
android:text="TextView" />
<ImageView
android:id="@+id/imageView2"
android:layout_
android:layout_
android:layout_alignParentEnd="true"
android:layout_alignParentTop="true"
android:layout_marginEnd="17dp"
android:layout_marginTop="75dp"
app:srcCompat="@mipmap/ic_launcher"
android:background="@drawable/ic_launcher_background"/>
</RelativeLayout>
activity_main.xml:-
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_
android:layout_
tools:context=".MainActivity">
<TextView
android:layout_
android:layout_
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<ListView
android:id="@+id/list"
android:layout_
android:layout_
tools:layout_editor_absoluteX="8dp"
tools:layout_editor_absoluteY="16dp"
android:divider="@color/Grey"
android:dividerHeight="2dp"
android:footerDividersEnabled="true"
android:headerDividersEnabled="true"
/>
</RelativeLayout>
输出显示如下:-screen of app
我想要图像数组中指定的图像,而不是列表视图中的 ic_launcher_background。 在此先感谢:)
【问题讨论】:
请同时添加您的适配器文件。 我使用了内置的 Simpleadapter。 尝试更改:HashMap<String,String>
到 HashMap<String,Object>
,和 h.put("image",images[i]+" ");
到 h.put("image",images[i]);
希望有帮助!
【参考方案1】:
你应该创建自己的 ListAdapter 来显示图像,在这里你可以找到很好的课程如何做到这一点custom-listview
【讨论】:
以上是关于在我的应用程序中使用简单适配器未在 ListView 上显示图像的主要内容,如果未能解决你的问题,请参考以下文章
didUpdateToLocation 未在我的设备中使用 iOS 4 调用...?