String url = getOutputMediaFile().getName();
Intent i = new Intent(this, FotoActivity.class);
i.putExtra("yourkey", url);
startActivity(i);
I want to start new activity, and send string to it. But I have an error on(this,FotoActivity.class);
Any ideas?