通过单击第一个活动中的不同按钮(图像名称),在第二个活动中打开不同的图像

时间:2017-03-09 18:16:54

标签: android button android-activity imageview

我有两项活动。活动一,三个按钮具有图像名称,即a,b,c。我想在第二个活动中打开该特定图像,该活动命名为我在第一个活动中点击的按钮。我不想做三个不同的活动来打开三个不同的图像。请帮帮我。

1 个答案:

答案 0 :(得分:0)

我认为你应该像这样使用额外的东西:

Intent intent=new Intent(context,NewActivity.class);
      intent.putExtra("name",value of variable);
      startActivity(intent);

然后在NewActivity中执行此操作:

String colorName=getIntent().getStringExtra("name");
switch(name){
case "color1":
do something;
break;
case "color2":
do something;
break;
case "color3":
do something;
break;
}