Як використовувати putExtra () та getExtra () для рядкових даних


318

Може хтось скажіть, будь ласка, як саме користуватися getExtra()та putExtra()в намірах? Насправді у мене є змінна струна, скажімо str, яка зберігає деякі рядкові дані. Тепер я хочу передати ці дані з однієї діяльності в іншу.

  Intent i = new Intent(FirstScreen.this, SecondScreen.class);   
  String keyIdentifer  = null;
  i.putExtra(strName, keyIdentifer );

а потім у SecondScreen.java

 public void onCreate(Bundle savedInstanceState) 
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.table);
        TextView userName = (TextView)findViewById(R.id.userName);
        Bundle bundle = getIntent().getExtras();

        if(bundle.getString("strName")!= null)
        {
            //TODO here get the string stored in the string variable and do 
            // setText() on userName 
        }

    }

Я знаю, що це дуже основне питання, але, на жаль, я застряг тут. Будь ласка, допоможіть.

Дякую,

Редагувати: Тут рядок, який я намагаюся передати з одного екрана на інший, є динамічним. Тобто у мене є editText, де я отримую рядок незалежно від типів користувачів. Тоді за допомогою myEditText.getText().toString(). Я отримую введене значення як рядок, тоді я маю передавати ці дані.


i.putExtra (strName, keyIdentifer); Це твердження має змінну strName, тоді як bundle.getString ("strName") має рядок "strName". Його intent.putExtra (ключ, значення) та intent.getExtras (). GetString (ключ); переконайтеся, що ви використовуєте той самий ключ у put and get.
seema

Відповіді:


416

Використовуйте це, щоб "поставити" файл ...

Intent i = new Intent(FirstScreen.this, SecondScreen.class);   
String strName = null;
i.putExtra("STRING_I_NEED", strName);

Потім, щоб отримати значення, спробуйте щось на кшталт:

String newString;
if (savedInstanceState == null) {
    Bundle extras = getIntent().getExtras();
    if(extras == null) {
        newString= null;
    } else {
        newString= extras.getString("STRING_I_NEED");
    }
} else {
    newString= (String) savedInstanceState.getSerializable("STRING_I_NEED");
}

10
чи "збереженийInstanceState ..." і "... getSerialiable" код використовуються для обробки змін орієнтації? якщо ні, для чого використовується цей код?
AJW

Я використовую android 3.0.1 і мені довелося користуватися this.getActivity().getIntent().getExtras().
Тайлер

Якщо ви використовуєте PendingIntents, вам потрібно використовувати прапор "PendingIntent.FLAG_UPDATE_CURRENT": stackoverflow.com/a/29846408/2738240 Intent намірів = новий Intent (контекст, MainActivity.class); intent.putExtra ("button_id", 1); PendingIntent pendingIntent = PendingIntent.getActivity (контекст, 0, намір, PendingIntent.FLAG_UPDATE_CURRENT); Видалення RemoteViews = нові RemoteViews (контекст.getPackageName (), R.layout.my_test_widget); views.setOnClickPendingIntent (R.id.my_test_widget_button_1, очікуючий намір);
Маттіас Лух

69

Перший екран.java

text=(TextView)findViewById(R.id.tv1);
edit=(EditText)findViewById(R.id.edit);
button=(Button)findViewById(R.id.bt1);

button.setOnClickListener(new OnClickListener() {
    public void onClick(View arg0) {
        String s=edit.getText().toString();

        Intent ii=new Intent(MainActivity.this, newclass.class);
        ii.putExtra("name", s);
        startActivity(ii);
    }
});

Другий екран.java

public class newclass extends Activity
{
    private TextView Textv;

    @Override
    protected void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);
        setContentView(R.layout.intent);
        Textv = (TextView)findViewById(R.id.tv2);
        Intent iin= getIntent();
        Bundle b = iin.getExtras();

        if(b!=null)
        {
            String j =(String) b.get("name");
            Textv.setText(j);
        }
    }
}

52

Найкращий метод ...

Активність відправлення

Intent intent = new Intent(SendingActivity.this, RecievingActivity.class);
intent.putExtra("keyName", value);  // pass your values and retrieve them in the other Activity using keyName
startActivity(intent);

Активність отримання

 Bundle extras = intent.getExtras();
    if(extras != null)
    String data = extras.getString("keyName"); // retrieve the data using keyName 

/// найкоротший спосіб отримання даних ..

String data = getIntent().getExtras().getString("keyName","defaultKey");

// Для цього потрібно api 12. // другий параметр необов’язковий. Якщо keyName недійсний, використовуйте defaultkeyяк дані.


18

Це те, що я використовував, сподіваюсь, це комусь допомагає .. просто і афективно.

надсилати дані

    intent = new Intent(getActivity(), CheckinActivity.class);
    intent.putExtra("mealID", meal.Meald);
    startActivity(intent);

отримати дані

    int mealId;

    Intent intent = getIntent();
    Bundle bundle = intent.getExtras();

    if(bundle != null){
        mealId = bundle.getInt("mealID");
    }

ура!


1
Я все ще мушу нагадувати про себе, раз і тоді, як це було зроблено належним чином ... хай!
Sindri Þór

10

Це дуже просто реалізувати intentв Android. Потрібно перейти від однієї діяльності до іншої діяльності, у нас є два способи, putExtra();і getExtra();тепер я показую вам приклад ..

    Intent intent = new Intent(activity_registration.this, activity_Login.class);
                intent.putExtra("AnyKeyName", Email.getText().toString());  // pass your values and retrieve them in the other Activity using AnyKeyName
                        startActivity(intent);

Тепер ми маємо отримати значення з AnyKeyNameпараметра, наведений нижче код допоможе у цьому

       String data = getIntent().getExtras().getString("AnyKeyName");
        textview.setText(data);

Ми можемо легко встановити отримане значення звідти Intent, де нам цього потрібно.


6

Невеликий додаток: вам не потрібно створювати власне ім’я для ключа, а android надає їх, f.ex. Intent.EXTRA_TEXT. Зміна прийнятої відповіді:

Intent i = new Intent(FirstScreen.this, SecondScreen.class);   
String strName = null;
i.putExtra(Intent.EXTRA_TEXT, strName);

Потім, щоб отримати значення, спробуйте щось на кшталт:

String newString;
Bundle extras = getIntent().getExtras();
if(extras == null) {
    newString= null;
} else {
    newString= extras.getString(Intent.EXTRA_TEXT);
}

4
Intent intent = new Intent(view.getContext(), ApplicationActivity.class);
                        intent.putExtra("int", intValue);
                        intent.putExtra("Serializable", object);
                        intent.putExtra("String", stringValue);
                        intent.putExtra("parcelable", parObject);
                        startActivity(intent);

ApplicationActivity

Intent intent = getIntent();
Bundle bundle = intent.getExtras();

if(bundle != null){
   int mealId = bundle.getInt("int");
   Object object = bundle.getSerializable("Serializable");
   String string = bundle.getString("String");
   T string = <T>bundle.getString("parcelable");
}

4

Оновлення в класі намірів .

  • Використовуйте hasExtra()для перевірки наявності у намірі даних на ключі.
  • Ви можете використовувати зараз getStringExtra()безпосередньо.

Передати дані

intent.putExtra(PutExtraConstants.USER_NAME, "user");

Отримати дані

String userName;
if (getIntent().hasExtra(PutExtraConstants.USER_NAME)) {
    userName = getIntent().getStringExtra(PutExtraConstants.USER_NAME);
}

Завжди кладіть ключі в константи як найкраща практика.

public interface PutExtraConstants {
    String USER_NAME = "USER_NAME";
}

Чому PutExtraConstantsінтерфейс?
Big_Chair

@Big_Chair Оскільки PutExtraConstantsклас містить тільки константи ( public, static, final). Тому краще використовувати інтерфейс для констант.
Хемраж

3

Більш просто

сторону відправника

Intent i = new Intent(SourceActiviti.this,TargetActivity.class);
i.putExtra("id","string data");
startActivity(i)

сторона приймача

Intent i = new Intent(SourceActiviti.this,TargetActivity.class);
String strData = i.getStringExtra("id");

3

Покладіть рядок у об'єкт наміру

  Intent intent = new Intent(FirstActivity.this,NextAcitivity.class);
  intent.putExtra("key",your_String);
  StartActivity(intent);

NextAcitvity в методі onCreate отримати String

String my_string=getIntent().getStringExtra("key");

це простий і короткий метод


2

надіслати

startActivity(new Intent(First.this, Secend.class).putExtra("key",edit.getText.tostring));

дістати

String myData = getIntent.getStringExtra("key");

1

поставити функцію

etname=(EditText)findViewById(R.id.Name);
        tvname=(TextView)findViewById(R.id.tvName);

        b1= (ImageButton) findViewById(R.id.Submit);

        b1.setOnClickListener(new OnClickListener() {
            public void onClick(View arg0) {
                String s=etname.getText().toString();

                Intent ii=new Intent(getApplicationContext(), MainActivity2.class);
                ii.putExtra("name", s);
                Toast.makeText(getApplicationContext(),"Page 222", Toast.LENGTH_LONG).show();
                startActivity(ii);
            }
        });



getfunction 

public class MainActivity2 extends Activity {
    TextView tvname;
    EditText etname;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main_activity2);
        tvname = (TextView)findViewById(R.id.tvName);
        etname=(EditText)findViewById(R.id.Name);
        Intent iin= getIntent();
        Bundle b = iin.getExtras();

        if(b!=null)
        {

          String j2 =(String) b.get("name");

etname.setText(j2);
            Toast.makeText(getApplicationContext(),"ok",Toast.LENGTH_LONG).show();
        }
    }

1

Push Data

import android.content.Intent;

    ...

    Intent intent = 
        new Intent( 
            this, 
            MyActivity.class );
    intent.putExtra( "paramName", "paramValue" );
    startActivity( intent );

Вищевказаний код може бути всередині основного activity. " MyActivity.class" - це друге, що Activityми хочемо запустити; він повинен бути явно включений у ваш AndroidManifest.xmlфайл.

<activity android:name=".MyActivity" />

Витягніть дані

import android.os.Bundle;

    ...

    Bundle extras = getIntent().getExtras();
    if (extras != null)
    {
        String myParam = extras.getString("paramName");
    }
    else
    {
        //..oops!
    }

У цьому прикладі наведений вище код буде знаходитися у вашому MyActivity.javaфайлі.

Gotchas

Цей метод може лише пройти strings. Тож скажімо, вам потрібно передати ArrayListсвоє ListActivity; можливий спосіб вирішити - пропустити рядок, розділений комою, а потім розділити його на іншій стороні.

Альтернативні рішення

Використовуйте SharedPreferences


а що робити, якщо я хочу передати рядок з string.xml?
НВ.

1

Простий, у першій діяльності-

    EditText name= (EditText) findViewById(R.id.editTextName);
    Button button= (Button) findViewById(R.id.buttonGo);
    button.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Intent i = new Intent(MainActivity.this,Main2Activity.class);
            i.putExtra("name",name.getText().toString());
           startActivity(i);
          }
    });

У другій діяльності-

    @Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main2);
    TextView t = (TextView) findViewById(R.id.textView);
    Bundle bundle=getIntent().getExtras();
    String s=bundle.getString("name");
    t.setText(s);
}

Якщо ви хочете, ви можете додати умови if / else.


1

На FirstScreen.java

    Intent intent = new Intent(FirstScreen.this, SecondScreen.class);
    String keyIdentifier = null;
    intent.putExtra(strName, keyIdentifier);

На SecondScreen.java

    String keyIdentifier;
    if (savedInstanceState != null)
        keyIdentifier= (String) savedInstanceState.getSerializable(strName);
    else
        keyIdentifier = getIntent().getExtras().getString(strName);

Ласкаво просимо до SO! Будь ласка, відредагуйте свою відповідь та поясніть трохи, чому і як це вирішує проблему. Для отримання додаткових вказівок см stackoverflow.com/help/how-to-answer
B - Ріан

0

поставити рядок першим

Intent secondIntent = new Intent(this, typeof(SecondActivity));
            secondIntent.PutExtra("message", "Greetings from MainActivity");

отримати його після цього

var message = this.Intent.GetStringExtra("message");

це все ;)


-1

Ви можете просто використовувати статичну змінну для зберігання рядка редакційного тексту, а потім використовувати цю змінну в іншому класі. Сподіваюся, це вирішить вашу проблему


Ви можете , але ви не повинні :-)
Бландел
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.