Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.media.RingtoneManager;

public class Main {
    public static boolean isMessageRing(int type) {
        if (type == RingtoneManager.TYPE_NOTIFICATION) {
            return true;
        }
        return false;
    }
}