Fix build

Change-Id: I09c649b3385ed46956f2d784546c430298de3069
This commit is contained in:
Alan Viverette
2014-06-02 17:12:58 -07:00
parent 6abd0d801b
commit ad3c4a136e

View File

@@ -3419,9 +3419,8 @@ public class PhoneWindow extends Window implements MenuBuilder.Callback {
private Drawable loadImageURI(Uri uri) {
try {
final Context context = getContext();
return Drawable.createFromStreamThemed(
context.getContentResolver().openInputStream(uri), null, context.getTheme());
return Drawable.createFromStream(
getContext().getContentResolver().openInputStream(uri), null);
} catch (Exception e) {
Log.w(TAG, "Unable to open content: " + uri);
}