gpt4 book ai didi

java - setContentView 抛出错误 NoClassDefFoundError

转载 作者:行者123 更新时间:2023-11-29 21:48:54 24 4
gpt4 key购买 nike

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

注意:如果我提取构建的 .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>

我的 Activity :

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。但是因为这是一个统一插件,我只是以编程方式创建了我需要的简单 View ,而没有加载任何资源。所以我的问题就这样解决了。

最佳答案

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

应该这样做:

<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>

关于java - setContentView 抛出错误 NoClassDefFoundError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14967746/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com