2

我正在尝试将 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”错误

4

1 回答 1

0

我意识到每当我修复 ActionBarSherlock 库中的警告时就会出现问题。我不认为他们会有所作为,但显然他们做到了。我还没有进一步检查我在库中修复了哪些导致编译出错的警告,但我认为这是当我禁止在 IcsProgressBar 类中不推荐使用“android.R.attr.animationResolution”的警告时。我稍后会对此进行研究,但重点是,在导入 ActionBarSherlock 库时不要弄乱它。

于 2012-08-31T03:25:33.573 回答