Android确定单击哪个按钮以启动活动

时间:2011-04-30 19:44:27

标签: android button android-activity components

我有一项活动将从父活动开始,但子活动的行为将根据在父活动中点击按钮来确定。

我一直在尝试确定调用哪个button.onClick方法来启动子活动,但是唉,我失败了。

具体来说,我一直专注于使用ComponentName并将其展平为字符串,但每次尝试这样做时,我都会得到一个Null Pointer Exception。

public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.subactivity);
        ComponentName callingActivity =  SubActivity.this.getCallingActivity();
            TextView listtype = (TextView) findViewById(R.id.subactivity_listtype);
        listtype.setText(callingActivity.flattenToString());

1 个答案:

答案 0 :(得分:5)

您需要将Extras作为自定义值传递,该值将告诉您哪个按钮启动了该活动。这必须在调用活动而不是新活动中完成。

以下是一个可以帮助您的示例

第一个上下文(可以是活动/服务等)

您有几个选择:

1)使用Bundle中的Intent

Intent mIntent = new Intent(this, Example.class);
Bundle extras = mIntent.getExtras();
extras.putString(key, value);  

2)创建一个新的Bundle

Intent mIntent = new Intent(this, Example.class);
Bundle mBundle = new Bundle();
mBundle.extras.putString(key, value);
mIntent.putExtras(mBundle);

3)使用Intent的putExtra()快捷方式

Intent mIntent = new Intent(this, Example.class);
mIntent.putExtra(key, value);

新上下文(可以是活动/服务等)

Intent myIntent = getIntent(); // this getter is just for example purpose, can differ
if (myIntent !=null && myIntent.getExtras()!=null)
     String value = myIntent.getExtras().getString(key);
}

注意: Bundles对所有基本类型,Parcelables和Serializables都有“get”和“put”方法。我只是将字符串用于演示目的。