2
我在Facebook的工作連接集成,我學習本教程: - https://developers.facebook.com/docs/android/login-with-facebook/v2.0 它的工作好:我得到一個連接,但因爲我已經集成在我的活動按鈕,其餘的活動停止工作。在其餘的活動中不可能進行互動。Facebook登錄按鈕塊完整的Android活動
在我的onCreate
主要活動我有這樣的代碼:
if (savedInstanceState != null) {
// Or set the fragment from restored state info
mainFragment = (MainFragment) getSupportFragmentManager()
.findFragmentById(android.R.id.content);
} else {
// Add the fragment on initial activity setup
mainFragment = new MainFragment();
getSupportFragmentManager()
.beginTransaction()
.add(android.R.id.content, mainFragment)
.commit();
}
我認爲這是片段巫婆導致此問題,即使我不是很舒適處理片段。 我的活動是一個片段活動和MainFragment擴展片段。
我讀了很多話題,但沒有找到任何解決我的問題的答案。 預先感謝您的時間。
如果沒有使用該代碼的您可以刪除代碼.. –
聽起來像是你以某種方式阻止你的主線程..你在主線程中做任何網絡或其他更昂貴的任務嗎?請記住正確使用AsyncTasks或簡單的附加線程。 – Blacklight
你必須使用碎片嗎? – Tareq