link to image view kotlin

// Step 1: Add ImageView in XML layout
<ImageView
    android:id="@+id/imageView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/your_image" />

// Step 2: Reference the ImageView in the Activity/Fragment
val imageView: ImageView = findViewById(R.id.imageView)

// Step 3: Load an image into the ImageView
val imageUrl = "https://www.example.com/your_image.jpg"
Glide.with(this).load(imageUrl).into(imageView)