2011-12-18 91 views
0

我正在嘗試將開源應用程序集成到我的android應用程序中。我已經將開源應用程序作爲庫應用程序,並將xml集成到我的Android清單文件中。沒有編譯錯誤。android集成庫應用程序

第一個屏幕是爲圖書館應用的登錄畫面,當它被稱爲是在投擲的Java類郎異常錯誤:

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

Activity.getApplication()返回在<application>元素的清單中聲明的​​應用程序類的實例。我沒有看到你的粘貼清單中。

這是不夠的簡單應用程序類在您的應用程序。它必須明確指定爲清單中的一個。

0

我也許弄錯了棍子的末端,所以我請求編程的神提前饒恕。

假設你在Eclipse中開發,這不是一個簡單的例子,在Eclipse中使用開源的源代碼在項目屬性中有一個選項isLibrary打勾。

在您的項目屬性中,您可以添加一個庫,Eclipse將列出開源源碼(以及其他任何已經檢查過「isLibrary」的源碼)。你會不會簡單地選擇開源項目並添加它?你的項目會添加庫並重新編譯?

要訪問開源項目,現在是一個庫,可以使用「導入」語句來訪問任何公開的公開方法。

這個使用開源庫項目的設置過程的一個很好的例子是Actionbar Sherlock,我寫了一個教程youtube,它可視化地演示了我剛寫的東西。它可以在http://www.youtube.com/watch?v=avcp6eD_X2k