Android 显性意图与隐性意图

Android 显性意图与隐性意图,第1张

概述Android显性意图隐性意图1,认识显性意图与隐性意图顾名思义,显性意图就是能在源码中看得出Intent跳转的activity对象Intentintent1=newIntent(this,Main2Activity.class);intent1.putExtra("one","one");intent1.putExtra("two","two");

AndroID 显性意图与隐性意图

  1,认识显性意图与隐性意图

    顾名思义,显性意图就是能在源码中看得出Intent跳转的activity对象

   Intent intent1=new Intent(this,Main2Activity.class);        intent1.putExtra("one","one");        intent1.putExtra("two","two");        startActivity(intent1);

 

    隐性意图即看不到跳转的对象 

    一般情况下,即在AndroIDManifest.xml修改

    

        <intent-filter>                <action androID:name="com.example.Login"/>                <category androID:name="androID.intent.category.DEFAulT" />            </intent-filter>

    在activity 逻辑文件中写Intent

    

 Intent intent=new Intent(/*this,Main2Activity.class*/);        intent.setAction("com.example.Login");        intent.addcategory(Intent.category_DEFAulT);        intent.putExtra("zh",countText);        intent.putExtra("pass",passtext);        startActivity(intent);

 

总结

以上是内存溢出为你收集整理的Android 显性意图与隐性意图全部内容,希望文章能够帮你解决Android 显性意图与隐性意图所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1094247.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存