安卓怎样将fragment里的值传给activity
答案:1 悬赏:10 手机版
解决时间 2021-02-06 09:22
- 提问者网友:谁的错
- 2021-02-06 01:33
安卓怎样将fragment里的值传给activity
最佳答案
- 五星知识达人网友:深街酒徒
- 2021-02-06 01:53
public class brandContentPage extends Activity {
private TextView id;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.brand_contentpage);
id = (TextView)this.findViewById(R.id.name);
Bundle bundle = this.getIntent().getExtras();
int nameId = bundle.getInt("firstListId");
STRING.VALUEOF(nameId);
}
}
这样就可以了
private TextView id;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.brand_contentpage);
id = (TextView)this.findViewById(R.id.name);
Bundle bundle = this.getIntent().getExtras();
int nameId = bundle.getInt("firstListId");
STRING.VALUEOF(nameId);
}
}
这样就可以了
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯