无法通过添加滑行在我的 gridView 中显示图像

can't show image in my gridView by adding glide

我正在尝试用一些包含图像视图的卡片视图创建一个网格视图,我正在适配器 getView 方法中设置默认图像,但它不起作用。

这是我的 gridView 适配器:

class ImageAdapter constructor(private val mContext: Context, private val images: Array<Int>) :  BaseAdapter() {
    override fun getView(position: Int, convertView: View?, parent: ViewGroup?): View {
        var convertView = convertView

        if(convertView == null) {
            val layoutInflater = LayoutInflater.from(mContext)
            convertView = layoutInflater.inflate(R.layout.card_view, null)
        }
        val image = convertView!!.findViewById<ImageView>(R.id.added_picture)

        Glide.with(mContext).load(images[position]).into(image)

        return convertView
    }

    override fun getItem(position: Int): Any? {
        return images[position]
    }

    override fun getItemId(position: Int): Long {
        return position.toLong()
    }

    override fun getCount(): Int {
        return images.size
    }

}

我在适配器中添加的布局:

<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  android:layout_width="110dp"
  android:layout_height="110dp"
  android:layout_margin="3dp"
  app:layout_columnSpan="1"
  app:cardCornerRadius="8dp"
  app:layout_rowSpan="1"
  app:layout_column="2"
  app:layout_row="0" >
  <ImageView
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:id="@+id/added_picture"
    />
</androidx.cardview.widget.CardView>

MainActivity.kt onCreate 方法:

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)


        gridView.adapter = ImageAdapter(this, arrayOf(R.drawable.filled_rectangle, R.drawable.filled_rectangle))
}

我的 gridView 只显示空 space,如果我不使用

确保您的滑翔机将正确的 link 加载到图像视图。

简单地祝贺加载 links 以确保它是正确的。

Glide.with(this).load(getImage(my_drawable_image_name)).into(myImageView);

public int getImage(String imageName) {

int drawableResourceId = this.getResources().getIdentifier(imageName, "drawable", this.getPackageName());

return drawableResourceId;
}

或者您可以使用 imageview.setImageResource(images[postion])

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="wrap_content"
android:layout_height="wrap_content">

<androidx.cardview.widget.CardView
    android:layout_width="110dp"
    android:layout_height="110dp"
    app:cardCornerRadius="8dp"
    android:layout_marginTop="10dp"
    app:layout_column="2"
    app:layout_columnSpan="1"
    app:layout_row="0"
    app:layout_rowSpan="1">

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="@dimen/dp_20" />

</androidx.cardview.widget.CardView>