判断 Uri Scheme 是否 ContentResolver.SCHEME_FILE @param uri Uri @return true yes, false no
(final Uri uri)
| 546 | * @return {@code true} yes, {@code false} no |
| 547 | */ |
| 548 | public static boolean isFileScheme(final Uri uri) { |
| 549 | return isUriScheme(ContentResolver.SCHEME_FILE, uri); |
| 550 | } |
| 551 | |
| 552 | /** |
| 553 | * 判断 Uri Scheme 是否 ContentResolver.SCHEME_FILE |
nothing calls this directly
no test coverage detected