Java tutorial
//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; } }