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;
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
add a comment |
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
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
add a comment |
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
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
android kotlin
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
add a comment |
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
add a comment |
2 Answers
2
active
oldest
votes
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
add a comment |
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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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
add a comment |
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
add a comment |
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
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
answered Mar 24 at 19:19
Kavita_pKavita_p
461212
461212
add a comment |
add a comment |
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
add a comment |
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
add a comment |
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
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
edited Mar 24 at 19:19
Zoe
15.3k85789
15.3k85789
answered Mar 24 at 19:16
Kamran AliKamran Ali
827
827
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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