美文网首页
Android App Link

Android App Link

作者: ce2f22ad95cd | 来源:发表于2020-07-17 16:41 被阅读0次

    1. Tools -> App links Assistant

    在处理响应的activity中加入一下代码

    public void onCreate(Bundle savedInstanceState) {

        handleIntent(intent);    

    }

    protected void onNewIntent(Intent intent) {

        super.onNewIntent(intent);

        handleIntent(intent);

    }

    private void handleIntent(Intent intent) {

        String appLinkAction = intent.getAction();

        Uri appLinkData = intent.getData();

        if (Intent.ACTION_VIEW.equals(appLinkAction) && appLinkData !=null){

            String recipeId = appLinkData.getLastPathSegment();

            Uri appData = Uri.parse("content://com.recipe_app/recipe/").buildUpon()

                .appendPath(recipeId).build();

            //处理获取到的信息

        }

    }

    相关文章

      网友评论

          本文标题:Android App Link

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