我正在尝试将abs集成到我的应用程序中,但我不断收到此错误,因为无法对com.actionbarsherlock.internal.widget.ActionBarContainer进行充气。有人可以帮忙吗?
“Styles.xml”
<resources>
<style name="AppTheme" parent="Theme.Sherlock.Light" />
</resources>
“activity_main.xml中”
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="@string/hello_world"
tools:context=".MainActivity" />
</RelativeLayout>
“Android Manifest.xml”
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.e.ffgh"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="15" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/title_activity_main" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
“MainActivity.java”
package com.e.ffgh;
import com.actionbarsherlock.app.SherlockActivity;
import android.os.Bundle;
public class MainActivity extends SherlockActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
08-26 06:13:36.442:E / AndroidRuntime(1464):java.lang.RuntimeException:无法启动活动ComponentInfo {com.e.ffgh / com.e.ffgh.MainActivity}:android.view。 InflateException:二进制XML文件行#26:错误输出类com.actionbarsherlock.internal.widget.ActionBarContainer
更新:减少帖子。开始了一个只有最低限度的BS项目。它适用于ICS,但仍然给我姜饼或Froyo中的“错误膨胀类com.actionbarsherlock.internal.widget.ActionBarContainer”错误
答案 0 :(得分:0)
我意识到每当我在ActionBarSherlock库中修复警告时就会出现问题。我不认为他们会有所作为,但显然他们做了。我没有进一步检查我在库中修复了什么警告使编译变坏,但我认为是在IcsProgressBar类中禁止“android.R.attr.animationResolution”的警告时。稍后我将对此进行研究,但重点是,在导入时不要弄乱ActionBarSherlock库。