Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

import android.content.Context;

import android.graphics.Color;

public class Main {
    private static final String SPLASH_SCREEN_COLOR = "#13153E";

    public static final int getSplashScreenColor(Context context) {
        return Color.parseColor(SPLASH_SCREEN_COLOR);
    }
}