blob: 46d0321242860ef7e2a7ea081d184e86139d9e0a [file] [log] [blame]
/*
* Copyright (C) 2013 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.documentsui;
import android.content.Context;
import android.content.pm.PackageManager;
import android.content.pm.ProviderInfo;
import android.graphics.drawable.Drawable;
import android.util.TypedValue;
import com.android.documentsui.base.MimeTypes;
public class IconUtils {
public static Drawable loadPackageIcon(Context context, String authority, int icon) {
if (icon != 0) {
if (authority != null) {
final PackageManager pm = context.getPackageManager();
final ProviderInfo info = pm.resolveContentProvider(authority, 0);
if (info != null) {
return pm.getDrawable(info.packageName, icon, info.applicationInfo);
}
} else {
return context.getDrawable(icon);
}
}
return null;
}
public static Drawable loadMimeIcon(
Context context, String mimeType, String authority, String docId, int mode) {
return loadMimeIcon(context, mimeType);
}
/**
* Load mime type drawable from system MimeIconUtils.
* @param context activity context to obtain resource
* @param mimeType specific mime type string of file
* @return drawable of mime type files from system default
*/
public static Drawable loadMimeIcon(Context context, String mimeType) {
if (mimeType == null) return null;
return context.getContentResolver().getTypeInfo(mimeType).getIcon().loadDrawable(context);
}
public static Drawable applyTintColor(Context context, int drawableId, int tintColorId) {
final Drawable icon = context.getDrawable(drawableId);
return applyTintColor(context, icon, tintColorId);
}
public static Drawable applyTintColor(Context context, Drawable icon, int tintColorId) {
icon.mutate();
icon.setTintList(context.getColorStateList(tintColorId));
return icon;
}
public static Drawable applyTintAttr(Context context, int drawableId, int tintAttrId) {
final TypedValue outValue = new TypedValue();
context.getTheme().resolveAttribute(tintAttrId, outValue, true);
return applyTintColor(context, drawableId, outValue.resourceId);
}
}