Search
 
SCRIPT & CODE EXAMPLE
 

CSHARP

generate random dark colors programatically in android

Random rnd = new Random();
paint.setARGB(255, rnd.nextInt(256), rnd.nextInt(256), rnd.nextInt(256));
Comment

generate random light colors programatically in android

<?xml version="1.0" encoding="utf-8"?>
<resources>

<item name="blue" type="color">#FF33B5E5</item>
<item name="purple" type="color">#FFAA66CC</item>
<item name="green" type="color">#FF99CC00</item>
<item name="orange" type="color">#FFFFBB33</item>
<item name="red" type="color">#FFFF4444</item>
<item name="darkblue" type="color">#FF0099CC</item>
<item name="darkpurple" type="color">#FF9933CC</item>
<item name="darkgreen" type="color">#FF669900</item>
<item name="darkorange" type="color">#FFFF8800</item>
<item name="darkred" type="color">#FFCC0000</item>

<integer-array name="androidcolors">
    <item>@color/blue</item>
    <item>@color/purple</item>
    <item>@color/green</item>
    <item>@color/orange</item>
    <item>@color/red</item>
    <item>@color/darkblue</item>
    <item>@color/darkpurple</item>
    <item>@color/darkgreen</item>
    <item>@color/darkorange</item>
    <item>@color/darkred</item>
</integer-array>

</resources>
Comment

generate random light color android

final Random mRandom = new Random(System.currentTimeMillis());

public int generateRandomColor() {
    // This is the base color which will be mixed with the generated one
    final int baseColor = Color.WHITE;

    final int baseRed = Color.red(baseColor);
    final int baseGreen = Color.green(baseColor);
    final int baseBlue = Color.blue(baseColor);

    final int red = (baseRed + mRandom.nextInt(256)) / 2;
    final int green = (baseGreen + mRandom.nextInt(256)) / 2;
    final int blue = (baseBlue + mRandom.nextInt(256)) / 2;

    return Color.rgb(red, green, blue);
}
Comment

PREVIOUS NEXT
Code Example
Csharp :: sqldatareader in c# 
Csharp :: get tag unity 
Csharp :: linq query to check if record exists 
Csharp :: convert list string to list long c# 
Csharp :: generate certificate in windows 
Csharp :: get percentage c# 
Csharp :: c# file read 
Csharp :: Change Level in Unity 
Csharp :: .net mvc return a specific View 
Csharp :: get array from column datatable c# 
Csharp :: Dyanmically create datatable in c# 
Csharp :: c# quit button script 
Csharp :: linq sum 
Csharp :: change size of a unity object 
Csharp :: c# switch case greater than 
Csharp :: c# delete files in directory and subdirectories 
Csharp :: C# new form 
Csharp :: c# loops 
Csharp :: how to add a force to an object unity 
Csharp :: unity tilemap get all tiles 
Csharp :: select random from enum c# 
Csharp :: difference between awake and start unity 
Csharp :: .net 6 autofac 
Csharp :: how to close another app in system with c# 
Csharp :: unity button not working 
Csharp :: LINQ: 2 join with group by 
Csharp :: C# unit test exception using attribrute 
Csharp :: sum the digits in c# 
Csharp :: c# math method to reverse negative or positive 
Csharp :: change size of button c# 
ADD CONTENT
Topic
Content
Source link
Name
7+6 =