Android之Activity传值

app开发经常会使用到一些界面的跳转和传值,可以使用intent实现界面的跳转和传值。 最常见的Intent跳转示例: Intent intent = new Intent(A.this, B.class);   startActivity(intent);  或: Intent intent = new Intent();   intent.setClass(A.this, B.class); 
相关文章
相关标签/搜索