CB-10944 : NoSuchMethodError in InAppBrowser plugin

This closes #158
This commit is contained in:
Alexis Kofman 2016-03-24 08:06:20 +01:00 committed by Joe Bowser
parent 68054819d8
commit 21f4de0e2a

View File

@ -572,7 +572,7 @@ public class InAppBrowser extends CordovaPlugin {
back.setId(Integer.valueOf(2));
Resources activityRes = cordova.getActivity().getResources();
int backResId = activityRes.getIdentifier("ic_action_previous_item", "drawable", cordova.getActivity().getPackageName());
Drawable backIcon = activityRes.getDrawable(backResId, cordova.getActivity().getTheme());
Drawable backIcon = activityRes.getDrawable(backResId);
back.setBackground(null);
back.setImageDrawable(backIcon);
back.setScaleType(ImageView.ScaleType.FIT_CENTER);