編集のために ListView Activity 1 Activity 2 から値を渡したいと思います。
このコードはありますが、2 番目のアクティビティで値が渡されません。
アクティビティA
Intent i = new Intent(this, Modifica_entrate.class);
Bundle extras = new Bundle();
extras.putString (tv1.getText().toString(), data);
i.putExtras(extras);
アクティビティ B
Bundle extras = getIntent().getExtras();
String valuePass = extras.getString("data");
mDataScelta.setText(i.getExtras().getString(valuePass));