我想将图像从 recipe_button_list.java 发送到 recipe_display_screen.java,而我当前的代码突出显示了我的代码中的一个错误......
这是在 recipe_button_list 中发送图像的方式:
Intent i= new Intent(getBaseContext(),recipedisplayscreen.class);
//Sending data to the next screen
i.putExtra("textView1", inputIngredients1.getText().toString());
i.putExtra("textView2", inputMethod1.getText().toString());
i.putExtra("image_string",R.drawable.blustudios);
Log.e("n", inputMethod1.getText()+"."+ inputIngredients1.getText());
这是在 recipe_display_screen 中接收图像的方式:
Intent i = getIntent();
String Ingredients = i.getStringExtra("textView1");
String Method = i.getStringExtra("textView2");
String RecipeImage = i.getStringExtra("image_string");
这就是它的设置方式(给出错误(highlights setImageResource)
MethodDisplay.setText(Method);
IngredientsDisplay.setText(Ingredients);
RecipeDisplay.setImageResource(RecipeImage);
我的错误是什么???
提前感谢:P