How to assign drawable to ImageView in acitvity using Kotlin as languageStrange out of memory issue while loading an image to a Bitmap objectFling gesture detection on grid layoutGet screen dimensions in pixelsHow to change colors of a Drawable in Android?How to hide the title bar for an Activity in XML with existing custom themeHow do I make links in a TextView clickable?How to convert a Drawable to a Bitmap?How do I use a compound drawable instead of a LinearLayout that contains an ImageView and a TextViewYou need to use a Theme.AppCompat theme (or descendant) with this activityError retrieving parent for item: No resource found that matches the given name after upgrading to AppCompat v23

Is it legal for a bar bouncer to confiscate a fake ID

You have (3^2 + 2^3 + 2^2) Guesses Left. Figure out the Last one

Print lines between start & end pattern, but if end pattern does not exist, don't print

What is inside of the 200 star chest?

Second (easy access) account in case my bank screws up

How does the Around command at zero work?

How creative should the DM let an artificer be in terms of what they can build?

Cascading Switches. Will it affect performance?

Who enforces MPAA rating adherence?

Why are trash cans referred to as "zafacón" in Puerto Rico?

How to handle (one's own) self-harm scars (on the arm), in a work environment?

How to communicate to my GM that not being allowed to use stealth isn't fun for me?

Getting UPS Power from One Room to Another

Why are MBA programs closing?

Single-key teletype?

Active low-pass filters --- good to what frequencies?

A map of non-pathological topology?

How to decline a wedding invitation from a friend I haven't seen in years?

Moving points closer to polyline using ModelBuilder?

Writing an augmented sixth chord on the flattened supertonic

How come the nude protesters were not arrested?

Is it safe to change the harddrive power feature so that it never turns off?

Does the Long March-11 increase its thrust after clearing the launch tower?

Generate basis elements of the Steenrod algebra



How to assign drawable to ImageView in acitvity using Kotlin as language


Strange out of memory issue while loading an image to a Bitmap objectFling gesture detection on grid layoutGet screen dimensions in pixelsHow to change colors of a Drawable in Android?How to hide the title bar for an Activity in XML with existing custom themeHow do I make links in a TextView clickable?How to convert a Drawable to a Bitmap?How do I use a compound drawable instead of a LinearLayout that contains an ImageView and a TextViewYou need to use a Theme.AppCompat theme (or descendant) with this activityError retrieving parent for item: No resource found that matches the given name after upgrading to AppCompat v23






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








-2















I want to set and reset the Drawable resource of ImageView from activity, but the IDE is showing cannot assign a value to Val.










share|improve this question

















  • 1





    Please provide a minimal reproducible example showing what you tried and showing what specifically the IDE is pointing to as the source of the error.

    – CommonsWare
    Mar 24 at 19:35

















-2















I want to set and reset the Drawable resource of ImageView from activity, but the IDE is showing cannot assign a value to Val.










share|improve this question

















  • 1





    Please provide a minimal reproducible example showing what you tried and showing what specifically the IDE is pointing to as the source of the error.

    – CommonsWare
    Mar 24 at 19:35













-2












-2








-2








I want to set and reset the Drawable resource of ImageView from activity, but the IDE is showing cannot assign a value to Val.










share|improve this question














I want to set and reset the Drawable resource of ImageView from activity, but the IDE is showing cannot assign a value to Val.







android kotlin






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 24 at 19:12









Pawan RoyPawan Roy

32




32







  • 1





    Please provide a minimal reproducible example showing what you tried and showing what specifically the IDE is pointing to as the source of the error.

    – CommonsWare
    Mar 24 at 19:35












  • 1





    Please provide a minimal reproducible example showing what you tried and showing what specifically the IDE is pointing to as the source of the error.

    – CommonsWare
    Mar 24 at 19:35







1




1





Please provide a minimal reproducible example showing what you tried and showing what specifically the IDE is pointing to as the source of the error.

– CommonsWare
Mar 24 at 19:35





Please provide a minimal reproducible example showing what you tried and showing what specifically the IDE is pointing to as the source of the error.

– CommonsWare
Mar 24 at 19:35












2 Answers
2






active

oldest

votes


















0














Try by using the following code:



 image_view.setImageResource(R.drawable.my_drawable_file)


For more information please refer the following link:



https://android--code.blogspot.com/2018/03/android-kotlin-imageview-set-image.html






share|improve this answer






























    2














    val is not possible to change. You can set image in image by directly calling the ImageView in your onCreate like this:



    Imageviewid.background = resources.getDrawable(R.drawable.imageid)


    Alternatively, you can to change your val to a var






    share|improve this answer

























      Your Answer






      StackExchange.ifUsing("editor", function ()
      StackExchange.using("externalEditor", function ()
      StackExchange.using("snippets", function ()
      StackExchange.snippets.init();
      );
      );
      , "code-snippets");

      StackExchange.ready(function()
      var channelOptions =
      tags: "".split(" "),
      id: "1"
      ;
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function()
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled)
      StackExchange.using("snippets", function()
      createEditor();
      );

      else
      createEditor();

      );

      function createEditor()
      StackExchange.prepareEditor(
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      imageUploader:
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      ,
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      );



      );













      draft saved

      draft discarded


















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55327505%2fhow-to-assign-drawable-to-imageview-in-acitvity-using-kotlin-as-language%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      0














      Try by using the following code:



       image_view.setImageResource(R.drawable.my_drawable_file)


      For more information please refer the following link:



      https://android--code.blogspot.com/2018/03/android-kotlin-imageview-set-image.html






      share|improve this answer



























        0














        Try by using the following code:



         image_view.setImageResource(R.drawable.my_drawable_file)


        For more information please refer the following link:



        https://android--code.blogspot.com/2018/03/android-kotlin-imageview-set-image.html






        share|improve this answer

























          0












          0








          0







          Try by using the following code:



           image_view.setImageResource(R.drawable.my_drawable_file)


          For more information please refer the following link:



          https://android--code.blogspot.com/2018/03/android-kotlin-imageview-set-image.html






          share|improve this answer













          Try by using the following code:



           image_view.setImageResource(R.drawable.my_drawable_file)


          For more information please refer the following link:



          https://android--code.blogspot.com/2018/03/android-kotlin-imageview-set-image.html







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 24 at 19:19









          Kavita_pKavita_p

          461212




          461212























              2














              val is not possible to change. You can set image in image by directly calling the ImageView in your onCreate like this:



              Imageviewid.background = resources.getDrawable(R.drawable.imageid)


              Alternatively, you can to change your val to a var






              share|improve this answer





























                2














                val is not possible to change. You can set image in image by directly calling the ImageView in your onCreate like this:



                Imageviewid.background = resources.getDrawable(R.drawable.imageid)


                Alternatively, you can to change your val to a var






                share|improve this answer



























                  2












                  2








                  2







                  val is not possible to change. You can set image in image by directly calling the ImageView in your onCreate like this:



                  Imageviewid.background = resources.getDrawable(R.drawable.imageid)


                  Alternatively, you can to change your val to a var






                  share|improve this answer















                  val is not possible to change. You can set image in image by directly calling the ImageView in your onCreate like this:



                  Imageviewid.background = resources.getDrawable(R.drawable.imageid)


                  Alternatively, you can to change your val to a var







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Mar 24 at 19:19









                  Zoe

                  15.3k85789




                  15.3k85789










                  answered Mar 24 at 19:16









                  Kamran AliKamran Ali

                  827




                  827



























                      draft saved

                      draft discarded
















































                      Thanks for contributing an answer to Stack Overflow!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid


                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.

                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55327505%2fhow-to-assign-drawable-to-imageview-in-acitvity-using-kotlin-as-language%23new-answer', 'question_page');

                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                      Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                      Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript