ActionBarSherlock & ShareActionProvider raises an InflateException

I am creating an application that uses ActionBarSherlock and its ShareActionProvider to create intent for other applications. I created an element based on sample code on the github page of the library; At first I worked flawlessly. However, the next day he simply stopped working. If I delete the code regarding the menu infusion, the activity loads normally, otherwise it will fail with the following exception:

05-31 22:28:41.200: E/AndroidRuntime(15874): FATAL EXCEPTION: main 05-31 22:28:41.200: E/AndroidRuntime(15874): android.view.InflateException: Binary XML file line #26: Error inflating class <unknown> 05-31 22:28:41.200: E/AndroidRuntime(15874): at android.view.LayoutInflater.createView(LayoutInflater.java:613) 05-31 22:28:41.200: E/AndroidRuntime(15874): at com.android.internal.policy.impl.PhoneLayoutInflater.onCreateView(PhoneLayoutInflater.java:56) 05-31 22:28:41.200: E/AndroidRuntime(15874): at android.view.LayoutInflater.onCreateView(LayoutInflater.java:660) 05-31 22:28:41.200: E/AndroidRuntime(15874): at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:685) 05-31 22:28:41.200: E/AndroidRuntime(15874): at android.view.LayoutInflater.rInflate(LayoutInflater.java:746) 05-31 22:28:41.200: E/AndroidRuntime(15874): at android.view.LayoutInflater.inflate(LayoutInflater.java:489) 05-31 22:28:41.200: E/AndroidRuntime(15874): at android.view.LayoutInflater.inflate(LayoutInflater.java:396) 05-31 22:28:41.200: E/AndroidRuntime(15874): at com.actionbarsherlock.widget.ActivityChooserView.<init>(ActivityChooserView.java:229) 05-31 22:28:41.200: E/AndroidRuntime(15874): at com.actionbarsherlock.widget.ActivityChooserView.<init>(ActivityChooserView.java:202) 05-31 22:28:41.200: E/AndroidRuntime(15874): at com.actionbarsherlock.widget.ActivityChooserView.<init>(ActivityChooserView.java:192) 05-31 22:28:41.200: E/AndroidRuntime(15874): at com.actionbarsherlock.widget.ShareActionProvider.onCreateActionView(ShareActionProvider.java:164) 05-31 22:28:41.200: E/AndroidRuntime(15874): at com.actionbarsherlock.internal.view.ActionProviderWrapper.onCreateActionView(ActionProviderWrapper.java:23) 05-31 22:28:41.200: E/AndroidRuntime(15874): at android.view.ActionProvider.onCreateActionView(ActionProvider.java:98) 05-31 22:28:41.200: E/AndroidRuntime(15874): at com.android.internal.view.menu.MenuItemImpl.getActionView(MenuItemImpl.java:580) 05-31 22:28:41.200: E/AndroidRuntime(15874): at com.android.internal.view.menu.ActionMenuPresenter.getItemView(ActionMenuPresenter.java:235) 05-31 22:28:41.200: E/AndroidRuntime(15874): at com.android.internal.view.menu.ActionMenuPresenter.flagActionItems(ActionMenuPresenter.java:513) 05-31 22:28:41.200: E/AndroidRuntime(15874): at com.android.internal.view.menu.MenuBuilder.flagActionItems(MenuBuilder.java:1048) 05-31 22:28:41.200: E/AndroidRuntime(15874): at com.android.internal.view.menu.BaseMenuPresenter.updateMenuView(BaseMenuPresenter.java:91) 05-31 22:28:41.200: E/AndroidRuntime(15874): at com.android.internal.view.menu.ActionMenuPresenter.updateMenuView(ActionMenuPresenter.java:268) 05-31 22:28:41.200: E/AndroidRuntime(15874): at com.android.internal.view.menu.MenuBuilder.dispatchPresenterUpdate(MenuBuilder.java:244) 05-31 22:28:41.200: E/AndroidRuntime(15874): at com.android.internal.view.menu.MenuBuilder.onItemsChanged(MenuBuilder.java:946) 05-31 22:28:41.200: E/AndroidRuntime(15874): at com.android.internal.view.menu.MenuBuilder.startDispatchingItemsChanged(MenuBuilder.java:969) 05-31 22:28:41.200: E/AndroidRuntime(15874): at com.android.internal.policy.impl.PhoneWindow.preparePanel(PhoneWindow.java:488) 05-31 22:28:41.200: E/AndroidRuntime(15874): at com.android.internal.policy.impl.PhoneWindow.invalidatePanelMenu(PhoneWindow.java:819) 05-31 22:28:41.200: E/AndroidRuntime(15874): at com.android.internal.policy.impl.PhoneWindow$1.run(PhoneWindow.java:3148) 05-31 22:28:41.200: E/AndroidRuntime(15874): at android.os.Handler.handleCallback(Handler.java:615) 05-31 22:28:41.200: E/AndroidRuntime(15874): at android.os.Handler.dispatchMessage(Handler.java:92) 05-31 22:28:41.200: E/AndroidRuntime(15874): at android.os.Looper.loop(Looper.java:137) 05-31 22:28:41.200: E/AndroidRuntime(15874): at android.app.ActivityThread.main(ActivityThread.java:4898) 05-31 22:28:41.200: E/AndroidRuntime(15874): at java.lang.reflect.Method.invokeNative(Native Method) 05-31 22:28:41.200: E/AndroidRuntime(15874): at java.lang.reflect.Method.invoke(Method.java:511) 05-31 22:28:41.200: E/AndroidRuntime(15874): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1006) 05-31 22:28:41.200: E/AndroidRuntime(15874): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:773) 05-31 22:28:41.200: E/AndroidRuntime(15874): at dalvik.system.NativeStart.main(Native Method) 05-31 22:28:41.200: E/AndroidRuntime(15874): Caused by: java.lang.reflect.InvocationTargetException 05-31 22:28:41.200: E/AndroidRuntime(15874): at java.lang.reflect.Constructor.constructNative(Native Method) 05-31 22:28:41.200: E/AndroidRuntime(15874): at java.lang.reflect.Constructor.newInstance(Constructor.java:417) 05-31 22:28:41.200: E/AndroidRuntime(15874): at android.view.LayoutInflater.createView(LayoutInflater.java:587) 05-31 22:28:41.200: E/AndroidRuntime(15874): ... 33 more 05-31 22:28:41.200: E/AndroidRuntime(15874): Caused by: android.content.res.Resources$NotFoundException: Resource is not a Drawable (color or path): TypedValue{t=0x2/d=0x7f01000f a=-1} 05-31 22:28:41.200: E/AndroidRuntime(15874): at android.content.res.Resources.loadDrawable(Resources.java:1925) 05-31 22:28:41.200: E/AndroidRuntime(15874): at android.content.res.TypedArray.getDrawable(TypedArray.java:601) 05-31 22:28:41.200: E/AndroidRuntime(15874): at android.view.View.<init>(View.java:3436) 05-31 22:28:41.200: E/AndroidRuntime(15874): at android.view.ViewGroup.<init>(ViewGroup.java:432) 05-31 22:28:41.200: E/AndroidRuntime(15874): at android.widget.FrameLayout.<init>(FrameLayout.java:101) 05-31 22:28:41.200: E/AndroidRuntime(15874): at android.widget.FrameLayout.<init>(FrameLayout.java:97) 05-31 22:28:41.200: E/AndroidRuntime(15874): ... 36 more 

As you can see, nothing points to my code; I tracked the problem down to the first line of this method:

 public class NewsDetailActivity extends SherlockFragmentActivity{ . . . @Override public boolean onCreateOptionsMenu(Menu menu) { getSupportMenuInflater().inflate(R.menu.news_detail, menu); //mShareActionProvider = (ShareActionProvider) menu.findItem(R.id.share).getActionProvider(); //mShareActionProvider.setShareHistoryFileName(ShareActionProvider.DEFAULT_SHARE_HISTORY_FILE_NAME); return super.onCreateOptionsMenu(menu); } 

If this line is deleted, the operation works fine. The menu layout is shown below:

 <?xml version="1.0" encoding="utf-8"?> <menu xmlns:android="http://schemas.android.com/apk/res/android" > <item android:id="@+id/share" android:title="@string/share" android:showAsAction="ifRoom" android:actionProviderClass="com.actionbarsherlock.widget.ShareActionProvider"/> </menu> 

I could not solve the problem and could not find someone with a similar problem. However, I read on the wiki that Themes can be a problem, the next topic for my application and action bar, I changed it to Theme.Sherlock.Light and many others to no avail.

 <resources xmlns:android="http://schemas.android.com/apk/res/android"> <style name="AppBaseTheme" parent="Theme.Sherlock"> <item name="actionBarStyle">@style/ActionBar</item> <item name="android:actionBarStyle">@style/ActionBar</item> </style> <style name="ActionBar" parent="@style/Widget.Sherlock.ActionBar"> <item name="android:textColor">#ffffff</item> <item name="android:textStyle">bold</item>> <item name="android:background">@drawable/background_actionbar</item> <item name="android:backgroundStacked">@drawable/background_actionbar</item> <item name="android:backgroundSplit">@drawable/background_actionbar</item> </style> </resources> 

I am using the latest version of the library. Hope someone can help me! Thanks!

EDIT: I could not solve the problem, but I was tracking the Exception before this XML in ActionBarSherlock (layout / abs_activity_chooser_view.xml):

 <com.actionbarsherlock.internal.widget.IcsLinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/abs__activity_chooser_view_content" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" style="?attr/activityChooserViewStyle"> <FrameLayout android:id="@+id/abs__expand_activities_button" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_gravity="center" android:focusable="true" android:addStatesFromChildren="true" android:background="?attr/actionBarItemBackground"> <ImageView android:id="@+id/abs__image" android:layout_width="56dip" android:layout_height="36dip" android:layout_gravity="center" android:paddingTop="2dip" android:paddingBottom="2dip" android:paddingLeft="12dip" android:paddingRight="12dip" android:scaleType="fitCenter" android:adjustViewBounds="true" /> </FrameLayout> <FrameLayout android:id="@+id/abs__default_activity_button" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_gravity="center" android:focusable="true" android:addStatesFromChildren="true" android:background="?attr/actionBarItemBackground"> <ImageView android:id="@+id/abs__image" android:layout_width="56dip" android:layout_height="36dip" android:layout_gravity="center" android:paddingTop="2dip" android:paddingBottom="2dip" android:paddingLeft="12dip" android:paddingRight="12dip" android:scaleType="fitCenter" android:adjustViewBounds="true" /> </FrameLayout> </com.actionbarsherlock.internal.widget.IcsLinearLayout> 

It looks like the exception is thrown by FrameLayout.

EDIT 2: Ok, I found a way to stop the application from crashing. I removed the custom theme from my application and style from the action bar, leaving the application theme as follows:

 <application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/Theme.Sherlock" > 

This works well, however I lost the ability to customize the action bar .

+4
source share
4 answers

Change your activity style to android: theme = "@ style / Theme.Sherlock" in AndroidManifest.xml

Something like that

  <activity android:name=".MainActivity" android:theme="@style/Theme.Sherlock"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> 
+2
source

If you install the theme in onCreate, you can use your own styles without getting errors or crashes.

 protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setTheme(R.style.YourCustomTheme); ...} 

It doesn't seem like it is at the root of the problem, but at least it gives you a few options.

+1
source

I had the same problem, but I created ShareActionProvider from the code. Using getSupportActionBar().getThemedContext() for the first argument in ShareActionProvider's constructor resolved this.

+1
source

I guess this is a topic. Try changing:

 <style name="ActionBar" parent="@style/Widget.Sherlock.ActionBar"> 

to

 <style name="ActionBar" parent="Widget.Sherlock.ActionBar.Solid"> 
0
source

Source: https://habr.com/ru/post/1483909/


All Articles