如何使用注入textView的roboguice制作简单的Android应用程序?

时间:2011-06-09 14:09:44

标签: android roboguice

我是依赖注入和roboguice的初学者。我只想在我的应用程序中注入视图和资源。问题是,当我使用RoboActivity扩展我的类时,我得到一个ClassNotFoundException。

package tes.tes;
//imports
public class test extends RoboActivity {
/** Called when the activity is first created. */

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

    setContentView(R.layout.main);
}

这是堆栈跟踪:

  06-09 13:54:08.887: ERROR/AndroidRuntime(495): java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{tes.tes/tes.tes.test}:java.lang.ClassNotFoundException: tes.tes.test in loader dalvik.system.PathClassLoader[/data/app/tes.tes-1.apk]
  06-09 13:54:08.887: ERROR/AndroidRuntime(495):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2585)
  06-09 13:54:08.887: ERROR/AndroidRuntime(495):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2679)
...
  06-09 13:54:08.887: ERROR/AndroidRuntime(495): Caused by: java.lang.ClassNotFoundException: tes.tes.test in loader dalvik.system.PathClassLoader[/data/app/tes.tes-1.apk]
  06-09 13:54:08.887: ERROR/AndroidRuntime(495):     at dalvik.system.PathClassLoader.findClass(PathClassLoader.java:243
...

和我的清单

coding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="tes.tes"
      android:versionCode="1"
      android:versionName="1.0">


    <application android:icon="@drawable/icon" android:label="@string/app_name">
        <activity android:name=".test"
                  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>

我认为我的依赖关系很好,因为我可以看到guice,roboguice等的jar文件。 我尝试按照文档和下载示例代码,但这对我来说太复杂了。 我不知道我错过了什么。

感谢您的帮助。

3 个答案:

答案 0 :(得分:1)

我正在提交一个新答案,因为RoboGuice 2.0改变了它的工作方式。现在,在res / values / named roboguice.xml中创建一个XML文件。在那里列出你的模块,如下:

<?xml version="1.0" encoding="utf-8"?>
  <resources> 
    <string-array name="roboguice_modules">
    <item>com.example.CustomRenderModule</item>
    <item>com.you.yourmodule.TexModule</item>
  </string-array>
</resources>

Another example.

答案 1 :(得分:0)

您没有正确扩展RoboApplication。请考虑完整的RoboGuice installation tutorial

答案 2 :(得分:0)

我遵循了手册并使用了正确的命名约定,但它确实有效!

虽然这行

@Override
protected void addApplicationModules(List<Module> modules) {
    modules.add(new MyModule());
}
扩展RoboApplication的MyApplication.java中的

有错误,并说删除@Override,当我删除@Override时,它说它与位于RoboApplication中的另一个方法冲突。我不知道为什么。