open any .jpg image using my application + xamarin android

后端 未结 1 1127
南方客
南方客 2020-12-22 08:57

I am looking for a code implementation which help me to open any .jpg image of my device can be open by my application. I want my application in list of \"open with\".

相关标签:
1条回答
  • 2020-12-22 09:32

    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
    {
    
         ~~~
    
    }
    

    0 讨论(0)
提交回复
热议问题