I passes variable from Activity A to Activity B
I have problem :/
When a variable is empty it is error. When a variable is not empty it without error.
I check this:
if ( getIntent().getStringExtra(View_name.value_id).equals(null) ){
textView1.setText(" bla bla bla");
}
else{
textView1.setText("ble ble ble");
}
please help