Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

import android.graphics.Color;

public class Main {
    public final static int getCategoryDefaultBG(String category) {
        switch (category) {
        case "boardingPass":
            return 0xFF3d73e9;

        case "eventTicket":
            return 0xFF9f3dd0;

        case "coupon":
            return 0xFF9ccb05;

        case "storeCard":
            return 0xFFf29b21;

        case "generic":
            return 0xFFea3c48;

        default:
            return Color.WHITE;
        }

    }
}