long blogs

进一步有进一步惊喜


  • Home
  • Archive
  • Tags
  •  

© 2025 long

Theme Typography by Makito

Proudly published with Hexo

Android-intent组件

Posted at 2022-10-18 android 

android跳转到新的Activity页面

1
2
3
Intent intent = new Intent(this, IntentDemoActivity.class);
intent.putExtra("Hello","World");
startActivity(intent);

在新的界面里面获取传递的消息.

1
2
Intent intent = getIntent();
String msg = intent.getStringExtra("Hello");

Share 

 Previous post: Android-WebView与js交互 Next post: Android-BroadcastReceiver组件 

© 2025 long

Theme Typography by Makito

Proudly published with Hexo