I want my application in list of "open with".
You can add an Intent Filter (via an IntentFilterAttribute) that registers an Activity for that mime type. Then you can read the Intent
properties to determine what is being shared with your application.
[Activity(Label = "JPEG Viewer/Editor", MainLauncher = true, Icon = "@mipmap/icon")]
[IntentFilter(new[] { Intent.ActionView }, Categories = new[] { Intent.CategoryDefault }, DataMimeType = "image/jpeg")]
public class MainActivity : Activity
{
~~~
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…