Saving to drawable folder programmatically in Android
No, it's not possible. "The drawable folder" doesn't exist as a file system folder at runtime - it's part of your (read-only) binary .apk file.
You could instead save the image at internal folder and/or define a preference string. Check this old answer https://stackoverflow.com/a/3374138/4618976