[android-developers] Re: Intent to handle files opened in browser ending .droid.txt

2009-05-25 Thread CaptainFanatic
I am having trouble with this too. I have tried using a html file with a new mime type for my application: ... ... I have tried using .html and .myapp file extensions. My intent filters are something like this: But my application is not started. I have found a few differ

[android-developers] Re: Mime type on download file

2009-05-25 Thread CaptainFanatic
I am having problems with this too. I can't seem to generate an intent by browsing to a file that I want my application to open. I am using a html file (have tried both .html and .myapp file extensions) with this: Is there anything else I have to do to "tag" this file as having a certain m

[android-developers] Share data between tabbed intents

2009-01-21 Thread CaptainFanatic
I need to share an id key (int) between three ListActivities hosted in a TabActivity. I have a TabActivity with three tabs that each start ListActivities via intents like this: ... tabHost.addTab(tabHost.newTabSpec("tab1") .setIndicator("Recipes") .setContent(new

[android-developers] Re: Story about interesting Android apps

2008-05-08 Thread CaptainFanatic
Hi Vas, My project "Bites" is a recipe and ingredients organiser for household cooks. The project homepage is at http://bites-android.googlecode.com/ Bites creates relationships between your recipes, ingredients you have in the cupboard and and meals you plan to make. This data is used to automati

[android-developers] Listview non-clickable row - possible bug?

2008-04-08 Thread CaptainFanatic
I want to set the header of a listview as a static non-clickable element to be used as a column heading row at the top of the list. This allows me to reuse the following xml linearlayout created for list rows as the header, automatically maintaining consistency between column headings and row elem

[android-developers] Re: Share XML files

2008-03-27 Thread CaptainFanatic
ia bluetooth using the RFCOMM class. Please > > check out the documentation at: > > >  http://code.google.com/android/reference/org/bluez/RfcommSocket.html > > >  Thanks, > >  Megha > > > On Wed, Mar 26, 2008 at 10:36 PM, CaptainFanatic <[EMAIL PROTECTED

[android-developers] Share XML files

2008-03-26 Thread CaptainFanatic
I want to share data between two android phones, preferably by sending XML files, and I'm hoping for some feedback on what is the best way to do this. The reason I want to use XML is to keep things loosely coupled - this data could then be shared with apps on other platforms etc. One method I'm c