“Android Studio przechodzi wartość do innego działania” Kod odpowiedzi

Android Studio przechodzi wartość do innego działania

Intent i = new Intent(this, ActivityTwo.class);
AutoCompleteTextView textView = (AutoCompleteTextView) findViewById(R.id.autocomplete);
String getrec=textView.getText().toString();

//Create the bundle
Bundle bundle = new Bundle();

//Add your data to bundle
bundle.putString(“stuff”, getrec);

//Add the bundle to the intent
i.putExtras(bundle);

//Fire that second activity
startActivity(i);
Evil Elephant

Android Studio przechodzi wartość do innego działania

//Get the bundle
Bundle bundle = getIntent().getExtras();

//Extract the data…
String stuff = bundle.getString(“stuff”); 
Evil Elephant

Odpowiedzi podobne do “Android Studio przechodzi wartość do innego działania”

Pytania podobne do “Android Studio przechodzi wartość do innego działania”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu