On Mon, Jan 10, 2011 at 7:57 PM, perumal316 <[email protected]> wrote:
> Now how do I register it as a default HTML Reader in the Android system? > You don't - the user does, if they want to. > How do I register my application to be one of them listed? > Configure the right intent filters in your manifest to handle the data you want to respond to - in this case HTML files, probably with the "VIEW" action, at the very least. > Must I modify my code to allow this? Currently my application is just > loading a html attachment from the sdcard. > Your code needs to be able to respond to the Intent that will have the data representing the file. IOW, your code should grab the Intent, pull out the data, and load it appropriately. ------------------------------------------------------------------------------------------------- TreKing <http://sites.google.com/site/rezmobileapps/treking> - Chicago transit tracking app for Android-powered devices -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

