[android-developers] Help with Content Providers / Content Resolvers

2011-01-10 Thread Pedro Duque
Hi, I'm developing an editor for my application data. This application has a free and a premium version, so each one has it's own content provider with different authorities to avoid clashes. The editor also have a local content provider so it can work standalone. What I want to do is to check

Re: [android-developers] Help with Content Providers / Content Resolvers

2011-01-10 Thread Kostya Vasilyev
The mime type mapping works in the other direction: once you have a ContentProvider (or more specifically, a URI for a data query) it can be used to get the mime type. For your task, take a look at:

Re: [android-developers] Help with Content Providers / Content Resolvers

2011-01-10 Thread Pedro Duque
Thank you Kostya, that's exactly what I was looking for! On 10 January 2011 13:02, Kostya Vasilyev kmans...@gmail.com wrote: The mime type mapping works in the other direction: once you have a ContentProvider (or more specifically, a URI for a data query) it can be used to get the mime type.