In Jetpack compose example to load image from drawable folder we will use below code. In the above example we used image composable and create Painter object from painterResource() and pass the resource id. You can read more about Image composable in Jetpack compose
@Composable
fun LoadFromResourceDemo(){
val image: Painter = painterResource(id = R.drawable.image1)
Image(painter = image,contentDescription = "image",)
}
What is ANR in android?
What is Android?
What is "shared preferences" in Android ?
How to avoid multiple button click at same time in android?
Add Jar/Library Files as Dependency in Android Studio
What is the Different Between val and var in Kotlin?
What is Android Fragments?
What is Intent? What is the difference between an implicit intent and an explicit intent?
How to get an image resource by it's name in android?
How to install/ uninstall apk by command line ADB
What are the notifications available in android?
How to Get bitmap from drawable: Android
FragmentPagerAdapter deprecated, Since API 27.1.0 FragmentPagerAdapter is deprecated.
Extract Date and Time from Long Type Variable - RRutors
Fix Error: Use JsonReader.setLenient(true) for Malformed JSON
Symmetric vs Asymmetric Encryption in Android Server - RRutors
What is NetworkOnMainThread Exception?
What happens next when the device switches between portrait and landscape?
How to convert milli seconds to hours, minutes and seconds in Android?
Fix Duplicate Files in APK Build.gradle Issue - RRutors
Permission denied for window type 2010 in Marshmallow device
How to stop EditText focus at Activity startup in Android?
Fix Play Store Rejection Due to SMS Permission - RRutors
Hide/Disable soft keyboard on Activity launch: Android
What is ANR? How to avoid and resolve it?
How can i comment inside xml file in android studio?
How to reduce APK package size?
Invoke-customs are only supported starting with android 0 --min-api 26
How to get a contact image using a phone number in android?
How do I check in SQLite whether a table exists?
How to Generate signed apk with android studio
Open PDF in Google Drive with Intent in Android - RRutors
How to get complete address from latitude and longitude?
FCM Not Receiving Notifications in Android - RRutors
What is Application?
Fix Android Emulator Kill Error When Running Your App
How to check Android version?
How To Set Text Color Programmatically Android TextView?
How do i load image from drawable folder in Jetpack Compose?
What is the difference between match_parent and fill_parent?