使用参数启动活动


292

我对Android开发非常陌生。

我想创建并启动一个活动以显示有关游戏的信息。我显示该信息我需要一个gameId。

如何将这个游戏ID传递给活动?游戏ID是绝对必要的,因此如果没有ID,我不想创建或开始活动。

就像该活动只有一个带有一个参数的构造函数。

我怎样才能做到这一点?

谢谢。

Answers:


506

int您的ID作为新ID Intent

Intent intent = new Intent(FirstActivity.this, SecondActivity.class);
Bundle b = new Bundle();
b.putInt("key", 1); //Your id
intent.putExtras(b); //Put your id to your next Intent
startActivity(intent);
finish();

然后在新的ID中获取ID Activity

Bundle b = getIntent().getExtras();
int value = -1; // or other values
if(b != null)
    value = b.getInt("key");

42
您可能需要确保b!= null,然后再开始使用它
安德鲁(Andrew)2010年

在此代码的第二个活动中,“ b”如何为空?我得到b在第二个活动的create方法上为null。
MuratÇorlu

3
B可以为null,可以说您想从另一个地方开始此活动,并且您以标准方式进行操作,没有参数。它将抛出一个NPE。您应该始终将此参数视为可选参数。
加斯帕·德·埃里亚斯

53
不必创建新的捆绑包(如果您这样做,则说明您“必须”使用软件包名称为密钥添加前缀。)只需使用intent.putExtra(String, Int)
山姆

1
有人可能会说最好不要进行空检查。en.wikipedia.org/wiki/Fail-fast
setholopolus

124

只需将额外数据添加到用于调用活动的Intent中即可。

在呼叫者活动中:

Intent i = new Intent(this, TheNextActivity.class);
i.putExtra("id", id);
startActivity(i);

在您调用的活动的onCreate()内部:

Bundle b = getIntent().getExtras();
int id = b.getInt("id");

1
可以传入自定义对象类型吗?
Amyth

1
@Amyth不,您必须像接受的答案中那样使用捆绑软件。
AtlasRider


38

我喜欢在第二个活动中使用静态方法来执行此操作:

private static final String EXTRA_GAME_ID = "your.package.gameId";

public static void start(Context context, String gameId) {
    Intent intent = new Intent(context, SecondActivity.class);
    intent.putExtra(EXTRA_GAME_ID, gameId);
    context.startActivity(intent);
}

@Override
protected void onCreate(Bundle savedInstanceState) {
    ... 
    Intent intent = this.getIntent();
    String gameId = intent.getStringExtra(EXTRA_GAME_ID);
}

然后,从您的第一个活动(以及其他任何活动)中,您只需执行以下操作:

SecondActivity.start(this, "the.game.id");

正是我想要的!谢谢
Matteo

1
在onCreate方法中不String gameId = intent.getStringExtra(EXTRA_EXTERNAL_ID);应该String gameId = intent.getStringExtra(EXTRA_GAME_ID);
marcusshep

拥有静电会使您的测试非常困难。
约翰·特里布

这是内存泄漏吗?对我来说,将上下文传递给静态方法似乎是个坏主意。为什么不只返回意图,然后从第一堂课开始使用该意图开始活动?
AndroidDev

4

Kotlin代码:

开始SecondActivity

startActivity(Intent(context, SecondActivity::class.java)
    .putExtra(SecondActivity.PARAM_GAME_ID, gameId))

取得ID SecondActivity

class CaptureActivity : AppCompatActivity() {

    companion object {
        const val PARAM_GAME_ID = "PARAM_GAME_ID"
    }

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)

        val gameId = intent.getStringExtra(PARAM_GAME_ID)
        // TODO use gameId
    }
}

其中gameIdString? (可以为空)


3

现有答案(将数据Intent传递给startActivity())显示了解决此问题的正常方法。还有一种解决方案可以用在奇怪的情况下,即您要创建一个将由另一个应用程序启动的活动(例如Tasker插件中的一个编辑活动),因此不控制Intent启动哪个活动。Activity

您可以创建一个Activity具有带有参数的构造函数的基类,然后创建一个具有默认构造函数的派生类,该默认构造函数用一个值调用该基类构造函数,如下所示:

class BaseActivity extends Activity
{
    public BaseActivity(String param)
    {
        // Do something with param
    }
}

class DerivedActivity extends BaseActivity
{
    public DerivedActivity()
    {
        super("parameter");
    }
}

如果您需要生成传递给基类构造函数的参数,只需用返回正确值以传递的函数调用替换硬编码值即可。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.