Last active
April 6, 2017 17:25
-
-
Save microwavePC/915cb1c613acf8d6f0274f9568046bd2 to your computer and use it in GitHub Desktop.
【Xamarin.Forms】【Android】Activityの結果をdependency serviceでハンドルする方法 ref: http://qiita.com/microwavePC/items/7ce8b8ee5b26f30d44d6
This file contains 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
using Android.Preferences; |
This file contains 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
// someIntentは、アクティビティ呼び出しのための任意のインテント。 | |
// SOME_REQUEST_CODEは任意のint値。 | |
mainActivity.StartActivityForResult(someIntent, SOME_REQUEST_CODE); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment