Android Around the World: Germany and Austria Launch Paid Apps
We just got a tip from the guys at Froogloid, who tell us that they
Informacja: 2009-04-02
Czytaj: Android Around the World: Germany and Austria Launch Paid Apps
Rumor: Palm To Release Mojo SDK Later Today
SAN FRANCISCO, California -- Mobile handset maker Palm is expected to make the developer's kit for its new WebOS smartphone operating system available as a public download Wednesday afternoon. The release is just a rumor at this point, but Palm has posted a note on its blog telling us to expect a major announcement about its Pre smartphone and its companion Mojo SDK at the Web 2.0 Expo, which kicks off today here at the Moscone Center. The note on Palm's blog, which the company assures us is
Informacja: 2009-04-02
Czytaj: Rumor: Palm To Release Mojo SDK Later Today
Google Web Toolkit 1.6 RC2 Now Available
The Google Web Toolkit engineering team is happy to announce that the second Google Web Toolkit 1.6 Release Candidate is now available from the project download page for you to try out. (The first GWT 1.6 Release Candidate was announced a couple of weeks ago on the the GWT Developer Forum .) New Project Structure in GWT 1.6 GWT 1.6 introduces a new project structure based on the standard J2EE web archive ( war ) format. We believe this will make it much, much easier to add a GWT module int
Informacja: 2009-04-02
Czytaj: Google Web Toolkit 1.6 RC2 Now Available
Re: [android-developers] Source Code for dx
Use the "snapshot" link in gitweb to get a tarball for a given directory, for example: [link] will give you the dex sources
Informacja: 2009-04-02
Czytaj: Re: [android-developers] Source Code for dx
Read the SMS already stored
Hi everybody, I unfortunately don't find the necessary documentation to retrieve the SMS already received in the inbox. My goal is to do smthg like : ContentResolver cr = mCtx.getContentResolver(); Cursor cur = cr.query(Uri.parse("content:// sms/inbox"), null, null, null, null);
Informacja: 2009-04-02
Czytaj: Read the SMS already stored
Re: Why isn't the "standby" instruction able to stop the thread?
Could anyone give me some helps?
Informacja: 2009-04-02
Czytaj: Re: Why isn't the "standby" instruction able to stop the thread?
Re: [android-developers] Re: Why isn't the "standby" instruction able to stop the thread?
Most of what you are doing (e.g., request_state) are not in the SDK. Questions regarding firmware operations are best asked on a discussion list pertaining to firmware: [link]
Informacja: 2009-04-02
Czytaj: Re: [android-developers] Re: Why isn't the "standby" instruction able to stop the thread?
Creating a private jar
I'm currently developping my own Android widgets. To help me in future projects and speed up my developments, I've been trying to create a private jar that contains all those widgets (that extend from Android classes such as View or ViewGroup). To do that, I created a project and included all files (.java and
Informacja: 2009-04-02
Czytaj: Creating a private jar
wap solution
Hi android engineers. I knew that android does not support wap, but I think that wap is a important feature in many countries and districts, so does someone know that how can add the wap feature or where/who already have some solution? Best regards.
Informacja: 2009-04-02
Czytaj: wap solution
Open files in res.raw by name -> File not found error
Hi, i have problem with opening files... this.res=imsLoader.context.get Resources(); this.context=imsLoader.context ; InputStream istream=null; ... ... istream=res.openRawResource(R. raw.l6); //->> it works correcty that file is on res/raw/l6.lvl istream=context.openFileInput( "l3.lvl"); // it give me FileNotFound
Informacja: 2009-04-02
Czytaj: Open files in res.raw by name -> File not found error
Re: [android-developers] Creating a private jar
Yeah, but that's special. There is no way for JARs written to support SDK-level applications to embed resources that I have found. Instead, you need to package your resources separately (e.g., a ZIP file) and distribute them for reusers of your JAR to unpack in their APK project's res/ tree (or to replace with their own editions of the
Informacja: 2009-04-02
Czytaj: Re: [android-developers] Creating a private jar
Re: [android-developers] Open files in res.raw by name -> File not found error
Use openRawResource() to open raw resources. Use openFileInput() to open files stored in your app-private file store (/data/data/your.package.name/ files). If you want to access resources by name, build yourself a Map<String,Integer> mapping string names ("l3.lvl") to corresponding raw resource IDs (R.raw.l3).
Informacja: 2009-04-02
Czytaj: Re: [android-developers] Open files in res.raw by name -> File not found error
Re: java.lang.NoSuchMethodError in Eclipse layout editor
For the time being, I have gotten around this problem by having a second initializer which calls the methods that are throwing the problems. I believe this is a bug, to be honest. At the very least, if there are separate classes for the actual Android SDK and the Android SDK that Eclipse uses, I would think that the layout editor should catch
Informacja: 2009-04-02
Czytaj: Re: java.lang.NoSuchMethodError in Eclipse layout editor
Best way to draw street name on a maps app
Hello all, I'm working on a maps application that draws streets from vectorial data using OpenGL. I encountered a bottleneck while drawing street names; as OpenGL can't render fonts by it's own, I followed the SurfaceOverlay API demo and put another view on top of the GLSurfaceView. The problem is that drawing something like 80 texts using
Informacja: 2009-04-02
Czytaj: Best way to draw street name on a maps app
Does Android support progressive download via methods other than chunked transfer coding?
As title, also please remind me where to find specifications related to these sorts of question. Thanks for your help!
Informacja: 2009-04-02
Czytaj: Does Android support progressive download via methods other than chunked transfer coding?