当前位置:   article > 正文

Intent 意图

Intent 意图

1 显示意图开启activity

MainActivity.this:当前上下文

FirstActivity.class:目标活动

使用startActivity 开启这个intent

  1. Intent intent = new Intent(MainActivity.this, FirstActivity.class);
  2. startActivity(intent);

2 隐式 意图开启activity

在AndroidManifest.xml 文件中配置 action 和 category

  1. <activity android:name=".FirstActivity">
  2. <intent-filter>
  3. <action android:name="com.example.a123.menutest.ACTION_START"></action>
  4. <category android:name="android.intent.category.DEFAULT"></category>
  5. <category android:name="android.intent.category.MY_CATEGORY"></category>
  6. </intent-filter>
  7. </activity>

使用Intent的构造函数,将action的字符串传入,表明想要启动com.example.a123.menutest.ACTION_START 这个action的活动

注意:每个intent只能指定一个action,却可以添加多个category

只有当 传入的字符串与 AndroidManifest 中配置的action和category 同时匹配上,才可启动activity

  1. Intent intent = new Intent("com.example.a123.menutest.ACTION_START");
  2. intent.addCategory("android.intent.category.MY_CATEGORY");
  3. startActivity(intent);


3 隐式 Intent 的用法:使用隐式 Intent,不仅可以开启自己程序内的活动,还可以调用其他程序的活动,使得android 之间的程序共享成为可能

例如:开启浏览器

Intent.ACTIN_VIEW:是android 内置动作

  1. Intent intent = new Intent(Intent.ACTION_VIEW);
  2. intent.setData(Uri.parse("http://www.baidu.com"));
  3. startActivity(intent);

拨打电话

  1. Intent intent = new Intent(Intent.ACTION_DIAL);
  2. intent.setData(Uri.parse("tel:10086"));
  3. startActivity(intent);



声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/236098
推荐阅读
相关标签
  

闽ICP备14008679号