Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.text.TextUtils;

public class Main {
    public static boolean isImage(String filePath) {
        if (TextUtils.isEmpty(filePath)) {
            return false;
        }

        filePath = filePath.toLowerCase();
        if ((!filePath.endsWith(".jpg") && !filePath.endsWith(".jpeg") && !filePath.endsWith(".png")
                && !filePath.endsWith(".bmp") && !filePath.endsWith(".gif"))) {
            return false;
        }
        return true;
    }
}