これを試して
String[] getArray=getIntent().getStringArrayExtra("notify");
間にある not1[x] は配列ではなく文字列です。
private NotificationManager mNotificationManager;
private int SIMPLE_NOTFICATION_ID;
mNotificationManager = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
notifyDetails = new Notification(R.drawable.somepngfile,"some text",System.currentTimeMillis());
Context context = getApplicationContext();
CharSequence contentTitle = "title";
CharSequence contentText = "ontent";
Intent notifyIntent = new Intent(thisclass.this,nextclass.class);
notifyIntent.putExtra("Value", finalresponse[1]+","+finalresponse[2]+","+finalresponse[3]);
PendingIntent intent =
PendingIntent.getActivity(BackService.this, 0,
notifyIntent, android.content.Intent.FLAG_ACTIVITY_NEW_TASK);
notifyDetails.setLatestEventInfo(context, contentTitle, contentText, intent);
notifyDetails.defaults|= Notification.DEFAULT_SOUND;
notifyDetails.defaults|= Notification.DEFAULT_LIGHTS;
notifyDetails.defaults|= Notification.DEFAULT_VIBRATE;
notifyDetails.defaults|= Notification.FLAG_AUTO_CANCEL;
notifyDetails.flags |= Notification.FLAG_AUTO_CANCEL | Notification.FLAG_SHOW_LIGHTS;
mNotificationManager.notify(SIMPLE_NOTFICATION_ID, notifyDetails);
次のクラスで
Intent i = getIntent();
i.getStringExtra("Value");
String[] response=i.getStringExtra("Value").split(",");