4

我的一个应用程序遇到了一个非常令人沮丧的问题。

我有一个启动画面活动,它为我的应用程序加载一些初始数据,然后启动主要活动并自行完成。

主要活动运行后,我通过按主页键使应用程序后台运行,然后终止我的应用程序的进程。

当我重新启动我的应用程序时,闪屏会尝试运行,但一旦我尝试访问 R.java 文件中的任何字段就会失败:

例如,我立即尝试像这样设置 textview 的文本:

((TextView)findViewById(R.id.splash_tv_1)).setText(application.getLanguage().pleasewait);

这会引发以下异常:

06-29 11:18:14.661: ERROR/AndroidRuntime(21427): java.lang.NoSuchFieldError: com.pagesuite.android.reader.framework.R$id.splash_tv_1

然后当我再次启动它时,它很好。

如果我使用 TaskKiller 工具终止应用程序(我知道很多用户会天真地使用我怀疑的东西)或操作系统终止我的进程,我会得到相同的行为。

有任何想法吗?

编辑:

刚刚在 logcat 中注意到,就在此活动的 onCreate() 执行之前,记录了以下内容:

06-29 11:18:14.571: WARN/dalvikvm(21427): VFY: unable to resolve static field 1945 (splash_logo) in Lcom/pagesuite/android/reader/framework/R$id;
06-29 11:18:14.571: DEBUG/dalvikvm(21427): VFY: replacing opcode 0x60 at 0x0000
06-29 11:18:14.571: DEBUG/dalvikvm(21427): VFY: dead code 0x0002-0010 in Lcom/pagesuite/android/reader/framework/activities/PS_Splashscreen;.loadLogoImg (Lcom/pagesuite/android/reader/framework/xml/appsettings/PS_AppSettings;)V
06-29 11:18:14.571: DEBUG/dalvikvm(21427): DexOpt: couldn't find static field
06-29 11:18:14.571: WARN/dalvikvm(21427): VFY: unable to resolve static field 1946 (splash_tv_1) in Lcom/pagesuite/android/reader/framework/R$id;
06-29 11:18:14.571: DEBUG/dalvikvm(21427): VFY: replacing opcode 0x60 at 0x0000
06-29 11:18:14.571: DEBUG/dalvikvm(21427): VFY: dead code 0x0002-0039 in Lcom/pagesuite/android/reader/framework/activities/PS_Splashscreen;.setLanguage ()V
06-29 11:18:14.571: DEBUG/dalvikvm(21427): DexOpt: couldn't find static field
06-29 11:18:14.571: WARN/dalvikvm(21427): VFY: unable to resolve static field 1946 (splash_tv_1) in Lcom/pagesuite/android/reader/framework/R$id;
06-29 11:18:14.571: DEBUG/dalvikvm(21427): VFY: replacing opcode 0x60 at 0x0000
06-29 11:18:14.571: DEBUG/dalvikvm(21427): VFY: dead code 0x0002-0020 in Lcom/pagesuite/android/reader/framework/activities/PS_Splashscreen;.setTextColors ()V

这是我尝试在课堂上访问 R.id 的三个实例。

需要注意的一件事是我确实打电话:

setContentView(R.layout.ps_splashscreen);

并且这条线似乎运行良好,所以似乎缺少的是 R.id。

编辑:这是布局:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerInParent="true"
    android:orientation="vertical" 
    android:gravity="center">

    <ImageView
        android:id="@+id/splash_logo"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />


    <TextView
        android:id="@+id/splash_tv_1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Please wait"
        android:textColor="@color/white"
        android:textSize="20dip" />

    <TextView
           android:id="@+id/splash_tv_2"
        android:layout_marginTop="20dip"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Loading..."
        android:textColor="@color/white" />

</LinearLayout>

4

3 回答 3

13

我有同样的问题,它给了我

DexOpt: couldn't find static field

错误,因为我有两个同名的布局 xml 文件,一个在外部库中,一个在项目中。我不知道这对其他人是否有用:)

于 2012-12-10T13:30:22.137 回答
0

我想我也看到了这个问题。你在引用图书馆项目吗?如果是这样,来自 R.java 的静态可能会丢失,因为 Eclipse 在将 R.java 从另一个库导入您的项目时将其删除。

请参阅:https ://stackoverflow.com/a/26791329/1748628

于 2014-11-06T23:28:11.477 回答
-1
//Have you Define this line in your oncreat method

      setcontentview(R.layout.yourlayout);

 // clen code then run again.
于 2012-06-29T13:12:16.243 回答