Posts

Showing posts with the label nosuchmethoderror

How to set Icon to the Alert Dialog Programatically in Android

Image
Clash Royale CLAN TAG #URR8PPP How to set Icon to the Alert Dialog Programatically in Android Em using these statements for creating an Alert Dialog and set icon to it, AlertDialog.Builder builder = new AlertDialog.Builder(this); builder.setIcon(this.getDrawable(R.drawable.video_downloader)); builder.setTitle("Congratulations !!!"); builder.show(); But it is crashing at setIcon, when I checked in drawable folder, the video_downloader icon is there already. AndroidRuntime: FATAL EXCEPTION: main java.lang.IllegalStateException: Could not execute method of the activity at android.view.View$1.onClick(View.java:3607) at android.view.View.performClick(View.java:4212) at android.view.View$PerformClick.run(View.java:17476) at android.os.Handler.handleCallback(Handler.java:800) at android.os.Handler.dispatchMessage(Handler.java:100) at android.os.Looper.loop(Looper.java:194) at android.app.ActivityThread.main(ActivityThread.java:...