2017-08-14 213 views
0

我正在開發我的第一個Android應用程序,特別是在這種情況下,可以幫助我更好地烹飪。我有兩個活動,我目前正在努力,我的MainActivity.java和whatCanIMake.java。當我使用startActivity(intent)從MainActivity啓動什麼CanMake時,我可以使用parcelables傳遞對象,並且通常使用whatCanIMake。我的問題是,我希望能夠傳回我在whatCanIMake活動中更改的所有內容的列表。例如:我通過了目前所有成分的清單,然後是什麼可以去除配方使用的成分。我想回傳其餘成分的最新清單。調用startActivityForResult時應用程序崩潰

我遇到的問題是與startActivityForResult()。以前,我成功地使用了startActivity(),將它的意圖傳遞給了多餘的可讀文件,而鮑勃是你的叔叔。當我更改爲startActivityForResult()時,新的活動無法啓動,因爲應用在碰到onCreate()之前崩潰。很明顯,這指向我的實現startActivityForResult(),所以我已經讀了基本上每個與startActivityForResult()有關的堆棧溢出問題,現在我在這裏!

我的啓動whatCanIMake的代碼如下,以及onActivityResult()和whatCanIMake中的相應代碼。

這對我來說太奇怪了,我可以簡單地將startActivityForResult()更改爲startActivity(),並且該應用程序再次運行!感謝您提前提供任何幫助。

MainActivity.java:

public void searchRecipe(View view) { 
     crossViewVariables.setMakeSort('a'); 
     Intent recipe = new Intent(this, whatCanIMake.class); 
     recipe.putExtra("Pantry",stock); 
     recipe.putExtra("Cookbook",activeCookbook); 
     recipe.setFlags(Intent.FLAG_ACTIVITY_FORWARD_RESULT); 
     startActivityForResult(recipe,R.integer.search_by_recipe); 
     //startActivity(recipe); 
    } 

    @Override 
    protected void onActivityResult(int requestCode, int resultCode, Intent data) { 
     switch(requestCode) { 


      case (R.integer.search_by_recipe)://comes from Recipe Search? 
       if (resultCode == Activity.RESULT_OK) { 
        Bundle b = data.getExtras(); 
        stock = b.getParcelable("Pantry"); 
       } 
       if (resultCode == Activity.RESULT_CANCELED) { 

       } 


      case (R.integer.search_by_ingredient)://comes from Recipe Search? 
       if (resultCode == Activity.RESULT_OK) { 
        Bundle b = data.getExtras(); 
        stock = b.getParcelable("Pantry"); 
       } 
       if (resultCode == Activity.RESULT_CANCELED) { 

       } 


      case (R.integer.make_recipe)://comes from seeRecipe? 
       if (resultCode == Activity.RESULT_OK) { 
        Bundle b = data.getExtras(); 
        stock = b.getParcelable("Pantry"); 
       } 
       if (resultCode == Activity.RESULT_CANCELED) { 
        Toast.makeText(getApplicationContext(), "Cancelled", Toast.LENGTH_LONG).show(); 
       } 

      case (R.integer.edit_pantry): 
       if (resultCode == Activity.RESULT_OK) { 
        Bundle b = data.getExtras(); 
        stock = b.getParcelable("Pantry"); 
       } 
     } 
    } 

whatCanIMake.java:

Intent result = new Intent(); 
    result.putExtra("Pantry", stock); 
    setResult(Activity.RESULT_OK,result); 
    finish(); 

的logcat:

FATAL EXCEPTION: main 
                      Process: com.example.schre.mememachine, PID: 26721 
                      java.lang.IllegalStateException: Could not execute method for android:onClick 
                       at android.support.v7.app.AppCompatViewInflater$DeclaredOnClickListener.onClick(AppCompatViewInflater.java:293) 
                       at android.view.View.performClick(View.java:5697) 
                       at android.widget.TextView.performClick(TextView.java:10826) 
                       at android.view.View$PerformClick.run(View.java:22526) 
                       at android.os.Handler.handleCallback(Handler.java:739) 
                       at android.os.Handler.dispatchMessage(Handler.java:95) 
                       at android.os.Looper.loop(Looper.java:158) 
                       at android.app.ActivityThread.main(ActivityThread.java:7224) 
                       at java.lang.reflect.Method.invoke(Native Method) 
                       at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1230) 
                       at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1120) 
                      Caused by: java.lang.reflect.InvocationTargetException 
                       at java.lang.reflect.Method.invoke(Native Method) 
                       at android.support.v7.app.AppCompatViewInflater$DeclaredOnClickListener.onClick(AppCompatViewInflater.java:288) 
                       at android.view.View.performClick(View.java:5697)  
                       at android.widget.TextView.performClick(TextView.java:10826)  
                       at android.view.View$PerformClick.run(View.java:22526)  
                       at android.os.Handler.handleCallback(Handler.java:739)  
                       at android.os.Handler.dispatchMessage(Handler.java:95)  
                       at android.os.Looper.loop(Looper.java:158)  
                       at android.app.ActivityThread.main(ActivityThread.java:7224)  
                       at java.lang.reflect.Method.invoke(Native Method)  
                       at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1230)  
                       at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1120)  
                      Caused by: android.util.AndroidRuntimeException: FORWARD_RESULT_FLAG used while also requesting a result 
                       at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1884) 
                       at android.app.Instrumentation.execStartActivity(Instrumentation.java:1545) 
                       at android.app.Activity.startActivityForResult(Activity.java:4283) 
                       at android.support.v4.app.BaseFragmentActivityJB.startActivityForResult(BaseFragmentActivityJB.java:50) 
                       at android.support.v4.app.FragmentActivity.startActivityForResult(FragmentActivity.java:79) 
                       at android.app.Activity.startActivityForResult(Activity.java:4230) 
                       at android.support.v4.app.FragmentActivity.startActivityForResult(FragmentActivity.java:859) 
                       at com.example.schre.mememachine.MainActivity.searchRecipe(MainActivity.java:91) 
                       at java.lang.reflect.Method.invoke(Native Method)  
                       at android.support.v7.app.AppCompatViewInflater$DeclaredOnClickListener.onClick(AppCompatViewInflater.java:288)  
                       at android.view.View.performClick(View.java:5697)  
                       at android.widget.TextView.performClick(TextView.java:10826)  
                       at android.view.View$PerformClick.run(View.java:22526)  
                       at android.os.Handler.handleCallback(Handler.java:739)  
                       at android.os.Handler.dispatchMessage(Handler.java:95)  
                       at android.os.Looper.loop(Looper.java:158)  
                       at android.app.ActivityThread.main(ActivityThread.java:7224)  
                       at java.lang.reflect.Method.invoke(Native Method)  
                       at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1230)  
                       at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1120) 
+0

使用LogCat檢查與您的崩潰相關的Java堆棧跟蹤:https://stackoverflow.com/questions/23353173/uncomfort-myapp-has-stopped-how-can-i-solve-this – CommonsWare

+0

我改變了過濾設置,我找到了日誌。我會編輯我的問題以包含它們!謝謝! – AssaultPotato

回答

0

刪除此行:

recipe.setFlags(Intent.FLAG_ACTIVITY_FORWARD_RESULT); 

你不需要它startActivityForResult(),它是什麼導致你的崩潰。

+0

我剛剛得出同樣的結論,我刪除它,它的工作!我只需要確保我更新我的其他活動電話以便解決所有問題。萬分感謝! – AssaultPotato

1

相反的:

startActivityForResult(recipe,R.integer.search_by_recipe); 

試試這個:

startActivityForResult(recipe, getResources().getInteger(R.integer.search_by_recipe)); 
+0

我會給它一個去,我會報告回來。感謝您的建議! – AssaultPotato

+0

似乎沒有任何幫助 – AssaultPotato