1

我在很多方面都是 Java 新手,我一生都无法弄清楚为什么在编译时找不到我的“imageactivity”布局时在运行时找不到它。该文件位于“penguinplugin/rez/layout/imageactivity.xml”...我需要在 Eclipse 或我的清单中设置什么才能找到它吗?

注意:如果我提取我构建的 .jar 文件,它不包含“R$layout.class”。这是一个图书馆顺便说一句,不兴奋......

我的布局 XML:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/imageactivityID"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <SurfaceView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0.86" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:text="Take Picture!" />

</LinearLayout>

我的活动:

import com.penguin.penguinplugin.R;
public class PhotoPickerActivity extends Activity implements OnClickListener
{
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        this.setContentView(R.layout.imageactivity);
    }
}

抛出的异常:

E/AndroidRuntime( 1285): FATAL EXCEPTION: main
E/AndroidRuntime( 1285): java.lang.NoClassDefFoundError: com.penguin.penguinplugin.R$layout
E/AndroidRuntime( 1285):    at penguinplugin.PhotoPickerActivity.onCreate(PhotoPickerActivity.java:47)
E/AndroidRuntime( 1285):    at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
E/AndroidRuntime( 1285):    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1617)
E/AndroidRuntime( 1285):    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1669)
E/AndroidRuntime( 1285):    at android.app.ActivityThread.access$1500(ActivityThread.java:117)
E/AndroidRuntime( 1285):    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:937)
E/AndroidRuntime( 1285):    at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 1285):    at android.os.Looper.loop(Looper.java:130)
E/AndroidRuntime( 1285):    at android.app.ActivityThread.main(ActivityThread.java:3692)
E/AndroidRuntime( 1285):    at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 1285):    at java.lang.reflect.Method.invoke(Method.java:507)
E/AndroidRuntime( 1285):    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:842)
E/AndroidRuntime( 1285):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:600)
E/AndroidRuntime( 1285):    at dalvik.system.NativeStart.main(Native Method)

编辑:所以我认为它可能不起作用的原因是因为 Eclipse 没有将资源构建到库对象中(如果是这样,手掌)......只有一个 exe。但是因为这是一个统一插件,我只是以编程方式创建了我需要的简单视图,而不加载任何资源。所以我的问题就解决了。

4

1 回答 1

2

您需要将单个父对象添加到布局文件

这样的事情应该做:

<LinearLayout 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=".YourActivity" >

    <SurfaceView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="0.86" />

    <Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal"
    android:text="Take Picture!" />
</LinearLayout>
于 2013-02-19T21:29:56.390 回答