Created
September 4, 2014 06:48
-
-
Save mizutori/1ff84ff8c8820daed838 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Intent intent = getIntent(); | |
| Uri uri = intent.getData(); | |
| if(uri != null){ | |
| final String source = intent.getData().getQueryParameter(“source”); | |
| final String locale = intent.getData().getQueryParameter(“locale”); | |
| Log.d("intent params", “source=" + source + “,locale=" + locale); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment