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

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현