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",)
}
Set Activity to Fullscreen Mode in Android - RRutors
How to convert milli seconds to hours, minutes and seconds in Android?
How to save activity State in Android?
How do I check in SQLite whether a table exists?
Hide/Disable soft keyboard on Activity launch: Android
What is the Different Between val and var in Kotlin?
How to avoid multiple button click at same time in android?
How to get an image resource by it's name in android?
What is Intent? What is the difference between an implicit intent and an explicit intent?
How To Set Text Color Programmatically Android TextView?
FragmentPagerAdapter deprecated, Since API 27.1.0 FragmentPagerAdapter is deprecated.
What is Android?
What is the difference between match_parent and fill_parent?
How to start a new activity on button click
Add Jar/Library Files as Dependency in Android Studio
What is Android Fragments?
What is Application?
Fix Error: Use JsonReader.setLenient(true) for Malformed JSON
How to Exit android app on back pressed?
FCM Not Receiving Notifications in Android - RRutors
What is ANR in android?
What is ANR? How to avoid and resolve it?
Open PDF in Google Drive with Intent in Android - RRutors
How do I generate random numbers in Dart?
How to get a contact image using a phone number in android?
How to reduce APK package size?
Extract Date and Time from Long Type Variable - RRutors
How to convert DP to Pixel and Pixel to Dp?
Android Studio project R can't find
How can i comment inside xml file in android studio?
How to Generate signed apk with android studio
How do i load image from drawable folder in Jetpack Compose?
What are the notifications available in android?
Check List for Generate Signed APK Android
What is NetworkOnMainThread Exception?
What happens next when the device switches between portrait and landscape?
What is Context?
How to get complete address from latitude and longitude?
How to install/ uninstall apk by command line ADB
Decompile APK Files: How to Get Source Code - RRutors Guide