如何在不使用Imageview和Textview的情况下在Listview中添加图标

时间:2018-10-18 07:53:01

标签: android listview

我想在列表视图中添加图标,但是我不想使用Imageview和textview模型。是否有解决方案?

这是我的布局

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ListView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/listviewLinks"
        android:divider="#111111"
        android:dividerHeight="2dp"/>

</android.support.constraint.ConstraintLayout>

这是我的代码

     ListView listLinks;
  ArrayList al = new ArrayList();

            for(int i = 0; i < linksArray.length(); ++i) {
                al.add(linksArray.getJSONObject(i).get("baslik"));
            }
          ArrayAdapter adapter = new ArrayAdapter(this, android.R.layout.simple_list_item_1, al);
                listLinks.setAdapter(adapter);

这是我的列表视图设计,如何在不使用图像视图和文本视图样式的情况下为每个列表视图项目添加图标

Here is my listview design how to add icon each listview item without using imageview and textview style

0 个答案:

没有答案