I want to show the Bitmap image in ImageView from sd card which is stored already. After run my application is crash and getting Ou
Your app is crashing because your image size (in MB Or KB) is too large so it is not allocating space for that. So before pasting your image in drawable just reduce the size.
OR
You can add Following in application tag at Manifest.xml
android:hardwareAccelerated="false"
android:largeHeap="true"
android:allowBackup="true"
After Adding this App will not Crash.