CopyPastor

Detecting plagiarism made easy.

Score: 0.880904574921498; Reported for: String similarity Open both answers

Possible Plagiarism

Plagiarized on 2014-01-27
by Nayan Rath

Original Post

Original - Posted on 2013-08-27
by Girish Thimmegowda



            
Present in both answers; Present only in the new answer; Present only in the old answer;

get the values of textbox and store it to some variables ex, val1 and val2 then use
Intent intent = new Intent(getBaseContext(), SecondActivity.class); intent.putExtra("Textbox_val1", val1); intent.putExtra("Textbox_val2", val2); startActivity(intent);
In the second Activity write
Bundle extras = getIntent().getExtras(); if(extras !=null) { String value1 = extras.getString(Textbox_val1); String value2 = extras.getString(Textbox_val2); }
get the values of textbox and store it to some variables ex, `val1` and `val2` then use
Intent intent = new Intent(getBaseContext(), SecondActivity.class); intent.putExtra("Textbox_val1", val1); intent.putExtra("Textbox_val2", val2); startActivity(intent)
In the second Activity write
Bundle extras = getIntent().getExtras(); if(extras !=null) { String value1 = extras.getString(Textbox_val1); String value2 = extras.getString(Textbox_val2); }

        
Present in both answers; Present only in the new answer; Present only in the old answer;