Open Any .jpg Image Using My Application + Xamarin Android
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'.
Solution 1:
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")]
publicclassMainActivity : Activity
{
~~~
}
Post a Comment for "Open Any .jpg Image Using My Application + Xamarin Android"