In my case, i set up edit text and a button in current activity, then for example i inputted "hey" in the edit text *here's my current code for the current activity
text = (EditText)findViewById(R.id.editText1);
compose = (Button)findViewById(R.id.button1);
compose.setOnClickListener(new View.OnClickListener() {
//doneactivity button start
@Override
public void onClick(View arg0)
{
String string = text.getEditableText().toString();
Intent intent= new Intent(Compose.this, DoneActivity.class);
intent.putExtra("editText_value",string);
startActivity(intent);
Compose.this.finish();
}
});
then in the next activity i put 3 textview, i'd done this part but it only display all i inputted in one textview and not separately *here's my current code for the next activity
TextView text = (TextView)findViewById(R.id.textView1);
Intent i = getIntent();
str = i.getStringExtra("editText_value");
text.setText(str);
now what i want to happen is that per letter will be displayed in different textview
...any suggestion will be fine to improve my application