我正在尝试将开源应用程序集成到我的Android应用程序中。我已经将开源应用程序作为库应用程序并将xml集成到我的android清单文件中。没有编译错误。
第一个屏幕是库应用程序的登录屏幕,当它被调用时,它会抛出java lang类异常错误:
m_app = (TodoApplication) getApplication();
loginscreen.java的源代码:
public class LoginScreen extends Activity {
final static String TAG = LoginScreen.class.getSimpleName();
private TodoApplication m_app;
private Button m_LoginButton;
private BroadcastReceiver m_broadcastReceiver;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.login);
m_app = (TodoApplication) getApplication();
// supposed to help with the banding on the green background
findViewById(R.id.loginbackground).getBackground().setDither(true);
IntentFilter intentFilter = new IntentFilter();
intentFilter.addAction("com.todotxt.todotxttouch.ACTION_LOGIN");
m_broadcastReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
Intent i = new Intent(context, TodoTxtTouch.class);
startActivity(i);
finish();
}
};
registerReceiver(m_broadcastReceiver, intentFilter);
m_LoginButton = (Button) findViewById(R.id.login);
m_LoginButton.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
login();
}
});
//final RemoteClient remoteClient = m_app.getRemoteClientManager()
// .getRemoteClient();
//if (remoteClient.isAuthenticated()) {
switchToTodolist();
//}
}
private void switchToTodolist() {
Intent intent = new Intent(this, TodoTxtTouch.class);
startActivity(intent);
finish();
}
@Override
protected void onDestroy() {
super.onDestroy();
unregisterReceiver(m_broadcastReceiver);
}
void login() {
final RemoteClient client = m_app.getRemoteClientManager()
.getRemoteClient();
if (!client.isAvailable()) {
Log.d(TAG, "Remote service " + client.getClass().getSimpleName()
+ " is not available; aborting login");
Util.showToastLong(m_app, R.string.toast_login_notconnected);
} else {
RemoteLoginTask loginTask = client.getLoginTask();
loginTask.showLoginDialog(this);
}
}
}
android manifest.xml中的集成库代码:
<activity android:name="com.todotxt.todotxttouch.LoginScreen" android:label="@string/app_label"
android:theme="@android:style/Theme.NoTitleBar"
android:configChanges="keyboardHidden|orientation">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="com.todotxt.todotxttouch.category.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.todotxt.todotxttouch.TodoApplication" />
<activity android:name="com.todotxt.todotxttouch.Filter" android:label="Filter"
android:theme="@android:style/Theme.NoTitleBar" />
<activity android:name="com.todotxt.todotxttouch.Preferences" android:label="@string/set_preferences" />
<activity android:name="com.todotxt.todotxttouch.AddTask" android:label="@string/addtask"
android:theme="@android:style/Theme.NoTitleBar"
android:configChanges="orientation|keyboardHidden"
android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<activity-alias android:name="com.todotxt.todotxttouch.AddTaskShortcut"
android:targetActivity="com.todotxt.todotxttouch.AddTask" android:label="@string/shortcut_addtask_name">
<intent-filter>
<action android:name="android.intent.action.CREATE_SHORTCUT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity-alias>
<activity-alias android:name="com.todotxt.todotxttouch.AddTaskShare"
android:targetActivity="com.todotxt.todotxttouch.AddTask" android:label="@string/share_addtask_name">
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>
</activity-alias>
<activity android:name="com.todotxt.todotxttouch.HelpActivity"
android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen" />
<activity android:name="com.todotxt.todotxttouch.TodoTxtTouch" android:theme="@android:style/Theme.NoTitleBar"
android:configChanges="keyboardHidden|orientation">
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
<meta-data android:name="android.app.searchable"
android:resource="@xml/searchable" />
</activity>
有谁可以帮助我理解这个问题。
让我进一步解释一下:我有一个名为Todoapplication.java的文件....所以该类存在......它是从LoginScreen.java调用的
m_app = (TodoApplication) getApplication();
这就是我得到java lang类异常的地方?
答案 0 :(得分:0)
Activity.getApplication()
返回在<application>
元素的清单中声明的应用程序类的实例。我没有在你的粘贴清单中看到它。
仅仅拥有应用程序中的应用程序类是不够的。它必须在清单中明确指定为一个。
答案 1 :(得分:0)
我可能得到了错误的结局,所以我提前请求编程之神的原谅。
假设您正在使用Eclipse进行开发,这不是一个简单的例子,它在Eclipse中有一个带有开源源的项目,在项目属性中有一个选项isLibrary勾选。
在您的项目属性中,您可以添加一个库,Eclipse将列出开源库(以及其他任何已选中“isLibrary”)的库。您不是简单地选择开源项目并添加它。然后您的项目将添加库并再次构建?
要访问开源项目,现在是一个库,您可以使用“import”语句来访问所公开的任何公共方法。
使用开源库项目的这个设置过程的一个很好的例子是Actionbar Sherlock,我在其中编写了一个教程youtube,用于直观地演示我刚刚编写的内容。它可以在http://www.youtube.com/watch?v=avcp6eD_X2k
找到