使用roboguice的例子 此代码获取ClassCastException。
public class MainActivity extends RoboActivity{
@InjectView(R.id.text)
TextView name;
@InjectView(R.id.imageView1)
ImageView imageView;
Drawable icon;
@InjectResource(R.string.app_name)
String myName;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
所有jar文件都已包含在内。
我的manifest.xml就在这里..
在这里找到。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.roboguice"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.roboguice.MainActivity"
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>
manifest.xml没有变化。 如果需要,那么说。
答案 0 :(得分:21)
试试这种方式
<application
android:name="roboguice.application.RoboApplication" // UPDATE HERE
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
答案 1 :(得分:1)
在AndroidManifest.xml中的应用程序标记中添加以下行
android:name="roboguice.application.RoboApplication"