欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

意图过滤器真机模拟为何无法触发弹窗

程序员文章站 2022-07-03 17:22:52
接收方xml文件中过滤器设置

接收方xml文件中过滤器设置

 <intent-filter>

                <action android:name="android.intent.action.VIEW"/>
                <category android:name="android.intent.category.DEFAULT"/>
                <category android:name="android.intent.category.BROWSABLE"/>
                <data android:scheme="http"/>
                <data android:scheme="https"/>

            </intent-filter>

获取传过来的数据字符串

 Intent intent=getIntent();//获取intent对象
  
        String uriStr=intent.getDataString();
        if(uriStr!=null){
            mtv.setText(uriStr);
        }

主动跳转方

 switch (v.getId()){
                case R.id.btn_1:
                    Uri uri= Uri.parse("http://www.baidu.com");
                    intent =new Intent(Intent.ACTION_VIEW,uri);
                    break;
            }
            startActivity(intent);

意图过滤器真机模拟为何无法触发弹窗
模拟器可以正常触发,真机模拟为何不行?

本文地址:https://blog.csdn.net/qq_41341181/article/details/110234081