美文网首页
Android URL Scheme

Android URL Scheme

作者: 视掘 | 来源:发表于2017-05-27 16:40 被阅读147次

    <intent-filter>
    <action android:name="android.intent.action.MAIN"/>
    <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
    <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="myapp" android:host="jp.app" android:pathPrefix="/openwith"/>
    </intent-filter>

    onCreate
    if(Intent.ACTION_VIEW.equals(action)){
    Uri uri = i_getvalue.getData();
    if(uri != null){
    String text = uri.toString().substring(20);
    Toast.makeText(AppActivity.getContext(),text,Toast.LENGTH_LONG).show();

            }
    
        }

    相关文章

      网友评论

          本文标题:Android URL Scheme

          本文链接:https://www.haomeiwen.com/subject/pfyqfxtx.html