“Kotlin Bitmap R.Drawing” Kode Jawaban

Kotlin Bitmap R.Drawing

val markerOption = MarkerOptions().apply {
    position(LatLng(driver.lat, driver.lng))
    icon(R.drawabel.your_drawable.toBitmapDescriptor(context))
    snippet(driver.driverId.toString())
}
mMap.addMarker(markerOption)
Oskopnir

Kotlin Bitmap R.Drawing

fun Int.toBitmapDescriptor(context: Context): BitmapDescriptor {
    val vectorDrawable = ResourcesCompat.getDrawable(context.resources, this, context.theme)
    val bitmap = vectorDrawable?.toBitmap(
        vectorDrawable.intrinsicWidth,
        vectorDrawable.intrinsicHeight,
        Bitmap.Config.ARGB_8888
    )
    return BitmapDescriptorFactory.fromBitmap(bitmap!!)
}
Oskopnir

Jawaban yang mirip dengan “Kotlin Bitmap R.Drawing”

Pertanyaan yang mirip dengan “Kotlin Bitmap R.Drawing”

Lebih banyak jawaban terkait untuk “Kotlin Bitmap R.Drawing” di Kotlin

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya