/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

zserge.com
| | www.thepolyglotdeveloper.com
1.2 parsecs away

Travel
| | Use a Java InputStream with threads to download remote files without a browser in Android. Use this method to download in-app purchase files or update data.
| | pbrisbin.com
1.2 parsecs away

Travel
| | I am not an android developer. I am not even a Java developer. What appears below is my attempt to share what I've learned using the android documentation, google, and copious amounts of trial and/or error. I apologize for mistakes; please offer corrections via twitter or email. I was upset when I first got my Droid Eris that the media player couldn't load a url by default. I stream my mpd out to the world so that I can pick it up away from home.
| | czak.pl
0.7 parsecs away

Travel
| | [AI summary] The author demonstrates creating an extremely minimal Android Hello World application using only command-line tools, text files, and the build system to understand the mechanics behind the IDE.
| | ryanharter.com
13.6 parsecs away

Travel
| On a recent client app, I ran into a situation where I needed an arbitrary number of EditText fields based on a selected value, where the user could enter people's information. My initial thought was to put this logic in my Fragment, just adding EditTexts to a LinearLayout container as the selected value changes, but that bloated my Fragment, and didn't allow for much reuse. This was a perfect opportunity to encapsulate this interaction functionality in a custom view, which would be reusable throughout t...