Android URL Scheme










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)