Setting alpha of ColorDrawable does not workAlpha blending a red, blue, and green image to produce an image tinted to any rgb value?Android and setting alpha for (image) view alphaSprite Batch doesn't change AlphaSVG fill color transparency / alpha?Set TextView style (bold or italic)ScrollView : Change the edge effect color with HoloMy colors are getting messed up when I give them an alpha valuealpha value always reset after color change of paintGLSL alpha test optimized out on NVIDIAIn JS, find the color as if it had 0.5 opacity on a white background?

The baby cries all morning

If you attempt to grapple an opponent that you are hidden from, do they roll at disadvantage?

Using parameter substitution on a Bash array

Was Spock the First Vulcan in Starfleet?

Is it correct to write "is not focus on"?

Confused about a passage in Harry Potter y la piedra filosofal

What to do with wrong results in talks?

Can a monster with multiattack use this ability if they are missing a limb?

What is the intuitive meaning of having a linear relationship between the logs of two variables?

How was Earth single-handedly capable of creating 3 of the 4 gods of chaos?

Is there any easy technique written in Bhagavad GITA to control lust?

What does this 7 mean above the f flat

Teaching indefinite integrals that require special-casing

Can I use my Chinese passport to enter China after I acquired another citizenship?

Mapping a list into a phase plot

What would be the benefits of having both a state and local currencies?

Print name if parameter passed to function

What defines a dissertation?

Is HostGator storing my password in plaintext?

How do I keep an essay about "feeling flat" from feeling flat?

Is there any reason not to eat food that's been dropped on the surface of the moon?

Generic lambda vs generic function give different behaviour

Coordinate position not precise

Should my PhD thesis be submitted under my legal name?



Setting alpha of ColorDrawable does not work


Alpha blending a red, blue, and green image to produce an image tinted to any rgb value?Android and setting alpha for (image) view alphaSprite Batch doesn't change AlphaSVG fill color transparency / alpha?Set TextView style (bold or italic)ScrollView : Change the edge effect color with HoloMy colors are getting messed up when I give them an alpha valuealpha value always reset after color change of paintGLSL alpha test optimized out on NVIDIAIn JS, find the color as if it had 0.5 opacity on a white background?













0















I am trying to achieve an effect in my app of where the user scrolls down, the opacity of a view will change from 0 to 1.



To achieve this, I've created a ColorDrawable with my desired color, blue, and then set its alpha to 0.



val actionBarBackground = ColorDrawable(ContextCompat.getColor(it, R.color.myBlue))
(activity as? AppCompatActivity)?.supportActionBar?.setBackgroundDrawable(actionBarBackground)


However, after increasing the alpha, it does not change. I've tried printing the value of actionBarBackground but its still 0...



// This is called inside a scrollview callback that calculates an alpha value between 0 and 255
actionBarBackground.alpha = 255
Log.d(TAG, "Alpha: $actionBarBackground.alpha") // Prints: Alpha: 0


Any ideas why the alpha of the ColorDwarable does not change? Thank you.










share|improve this question
























  • It might be nice if you add the tag for the language you are using (presumably Kotlin ?). See ColorDrawable setAlpha.

    – Jon Goodwin
    Mar 21 at 15:47











  • Thank you @JonGoodwin I've added the Kotlin tag. I've read the documentation of multiple times, and the .setAlpha() function does not seem to change the value in the color drawable.

    – Lucas P.
    Mar 21 at 15:51











  • See kotlin docs. mutate and invalidateself and setAlpha. This looks WRONG in your questionactionBarBackground.alpha = 255 something like actionBarBackground.setAlpha(255) ?

    – Jon Goodwin
    Mar 21 at 16:34
















0















I am trying to achieve an effect in my app of where the user scrolls down, the opacity of a view will change from 0 to 1.



To achieve this, I've created a ColorDrawable with my desired color, blue, and then set its alpha to 0.



val actionBarBackground = ColorDrawable(ContextCompat.getColor(it, R.color.myBlue))
(activity as? AppCompatActivity)?.supportActionBar?.setBackgroundDrawable(actionBarBackground)


However, after increasing the alpha, it does not change. I've tried printing the value of actionBarBackground but its still 0...



// This is called inside a scrollview callback that calculates an alpha value between 0 and 255
actionBarBackground.alpha = 255
Log.d(TAG, "Alpha: $actionBarBackground.alpha") // Prints: Alpha: 0


Any ideas why the alpha of the ColorDwarable does not change? Thank you.










share|improve this question
























  • It might be nice if you add the tag for the language you are using (presumably Kotlin ?). See ColorDrawable setAlpha.

    – Jon Goodwin
    Mar 21 at 15:47











  • Thank you @JonGoodwin I've added the Kotlin tag. I've read the documentation of multiple times, and the .setAlpha() function does not seem to change the value in the color drawable.

    – Lucas P.
    Mar 21 at 15:51











  • See kotlin docs. mutate and invalidateself and setAlpha. This looks WRONG in your questionactionBarBackground.alpha = 255 something like actionBarBackground.setAlpha(255) ?

    – Jon Goodwin
    Mar 21 at 16:34














0












0








0








I am trying to achieve an effect in my app of where the user scrolls down, the opacity of a view will change from 0 to 1.



To achieve this, I've created a ColorDrawable with my desired color, blue, and then set its alpha to 0.



val actionBarBackground = ColorDrawable(ContextCompat.getColor(it, R.color.myBlue))
(activity as? AppCompatActivity)?.supportActionBar?.setBackgroundDrawable(actionBarBackground)


However, after increasing the alpha, it does not change. I've tried printing the value of actionBarBackground but its still 0...



// This is called inside a scrollview callback that calculates an alpha value between 0 and 255
actionBarBackground.alpha = 255
Log.d(TAG, "Alpha: $actionBarBackground.alpha") // Prints: Alpha: 0


Any ideas why the alpha of the ColorDwarable does not change? Thank you.










share|improve this question
















I am trying to achieve an effect in my app of where the user scrolls down, the opacity of a view will change from 0 to 1.



To achieve this, I've created a ColorDrawable with my desired color, blue, and then set its alpha to 0.



val actionBarBackground = ColorDrawable(ContextCompat.getColor(it, R.color.myBlue))
(activity as? AppCompatActivity)?.supportActionBar?.setBackgroundDrawable(actionBarBackground)


However, after increasing the alpha, it does not change. I've tried printing the value of actionBarBackground but its still 0...



// This is called inside a scrollview callback that calculates an alpha value between 0 and 255
actionBarBackground.alpha = 255
Log.d(TAG, "Alpha: $actionBarBackground.alpha") // Prints: Alpha: 0


Any ideas why the alpha of the ColorDwarable does not change? Thank you.







android kotlin alpha colordrawable






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 21 at 15:50







Lucas P.

















asked Mar 21 at 15:26









Lucas P.Lucas P.

1,63511221




1,63511221












  • It might be nice if you add the tag for the language you are using (presumably Kotlin ?). See ColorDrawable setAlpha.

    – Jon Goodwin
    Mar 21 at 15:47











  • Thank you @JonGoodwin I've added the Kotlin tag. I've read the documentation of multiple times, and the .setAlpha() function does not seem to change the value in the color drawable.

    – Lucas P.
    Mar 21 at 15:51











  • See kotlin docs. mutate and invalidateself and setAlpha. This looks WRONG in your questionactionBarBackground.alpha = 255 something like actionBarBackground.setAlpha(255) ?

    – Jon Goodwin
    Mar 21 at 16:34


















  • It might be nice if you add the tag for the language you are using (presumably Kotlin ?). See ColorDrawable setAlpha.

    – Jon Goodwin
    Mar 21 at 15:47











  • Thank you @JonGoodwin I've added the Kotlin tag. I've read the documentation of multiple times, and the .setAlpha() function does not seem to change the value in the color drawable.

    – Lucas P.
    Mar 21 at 15:51











  • See kotlin docs. mutate and invalidateself and setAlpha. This looks WRONG in your questionactionBarBackground.alpha = 255 something like actionBarBackground.setAlpha(255) ?

    – Jon Goodwin
    Mar 21 at 16:34

















It might be nice if you add the tag for the language you are using (presumably Kotlin ?). See ColorDrawable setAlpha.

– Jon Goodwin
Mar 21 at 15:47





It might be nice if you add the tag for the language you are using (presumably Kotlin ?). See ColorDrawable setAlpha.

– Jon Goodwin
Mar 21 at 15:47













Thank you @JonGoodwin I've added the Kotlin tag. I've read the documentation of multiple times, and the .setAlpha() function does not seem to change the value in the color drawable.

– Lucas P.
Mar 21 at 15:51





Thank you @JonGoodwin I've added the Kotlin tag. I've read the documentation of multiple times, and the .setAlpha() function does not seem to change the value in the color drawable.

– Lucas P.
Mar 21 at 15:51













See kotlin docs. mutate and invalidateself and setAlpha. This looks WRONG in your questionactionBarBackground.alpha = 255 something like actionBarBackground.setAlpha(255) ?

– Jon Goodwin
Mar 21 at 16:34






See kotlin docs. mutate and invalidateself and setAlpha. This looks WRONG in your questionactionBarBackground.alpha = 255 something like actionBarBackground.setAlpha(255) ?

– Jon Goodwin
Mar 21 at 16:34













0






active

oldest

votes











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%2f55283913%2fsetting-alpha-of-colordrawable-does-not-work%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















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%2f55283913%2fsetting-alpha-of-colordrawable-does-not-work%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