我正在尝试将 abs 集成到我的应用程序中,但我不断收到有关无法充气 com.actionbarsherlock.internal.widget.ActionBarContainer 的错误消息。任何人都可以帮忙吗?
“样式.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 清单.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,但在 Gingerbread 或 Froyo 中仍然给我“错误膨胀类 com.actionbarsherlock.internal.widget.ActionBarContainer”错误