1

我为 3 个应用程序创建了两个具有共享代码和资源的 android 库项目。其中一个库(我将其称为库 A)具有由所有 3 个应用程序共享的代码和资源,另一个具有仅由三个应用程序中的两个共享的代码和资源(我们将其称为库 B)。

所以我让库 B 依赖于 A。我遇到的问题是依赖于库 B 的两个应用程序。在启动第一个 Activity 时,尝试访问库 B 中定义的 xml 布局中的元素时,我得到 NoSuchFieldErrors 或 NullPointerExceptions . 似乎在labbrary B中找不到Super class的资源。我创建了一个重现问题的小例子。

在图书馆 A:

AActivity.java:

public class AActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        doStuff();
    }

    protected void doStuff() {
    }

}

AndroidManifest.xml:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.testlib"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="10"
        android:targetSdkVersion="16" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.testliba.AActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

在图书馆 B:

BActivity.java:

public class BActivity extends AActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    setContentView(R.layout.activity_main_b);
    super.onCreate(savedInstanceState);

    AlertDialog alertDialog = new AlertDialog.Builder(this).create();
    alertDialog.setMessage(getResources().getString(R.string.buttonText));
}

@Override
protected void doStuff() {
    Button b = (Button) findViewById(R.id.button1);
    b.setText("I'm a button");
}
}

*res/layout/activity_main_b.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"
    tools:context=".MainActivity" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:text="@string/hello_world" />

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/textView1"
        android:layout_below="@+id/textView1"
        android:layout_marginTop="56dp"
        android:text="@string/buttonText" />

</RelativeLayout>

AndroidManifest.xml:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.testlib"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="10"
        android:targetSdkVersion="16" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.testlibb.BActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

在依赖库 B 的应用程序中:

MainActivity.java:

public class MainActivity extends BActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        // Contents specific for this Activity
    }
}

在应用程序的gen目录中,我发现生成了三个R.java

  • com.example.testapp
  • com.example.testlibb
  • com.example.testliba

并且id.button1存在于testapptestlibb的R.java中,并且它们在两者中具有相同的值。仍然在运行时找不到它。

提前致谢

4

2 回答 2

5

问题原来是两个库项目中的 AndroidManifest.xml 具有相同的默认包

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.testlib"

这在生成 R.java 时会导致问题。所以要解决这个问题,我只需要更改库项目的默认包,以便它们彼此不同:

在图书馆 A

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.testliba"

在图书馆 B

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.testlibb"
于 2013-01-09T11:57:48.493 回答
1

在 BActivity 中,您正在调用super.onCreate(savedInstanceState); AActivity 中的以下内容之后

super.onCreate(savedInstanceState);
doStuff();

做东西(); 被 BActivity 覆盖

所以按钮 b = (Button) findViewById(R.id.button1); 被调用,但 setContentView(R.layout.activity_main_b); 此时仍未被调用

于 2012-12-29T15:32:13.640 回答