0
votes
2answers
34 views
How do I launch the email app with the “to” field pre-filled?
I tried this code which I found here:
Intent intent = new Intent(Intent.ACTION_SENDTO, Uri.fromParts("mailto", "testemail@gmail.com", null)); startActivity(intent);
But I get a …
0
votes
1answer
12 views
android maps: how to determine map center after a drag has been completed
Hi.
Is there a way through the android maps API, where I can detect the map center after pan animation has completed? I want to use this information to load markers from a server …
0
votes
0answers
18 views
Where to get Android 1.5 source?
Hi,
I'm targeting Android 1.5 - I'd like to use the ScrollView widget, but there's a hard-coded value within the class which makes it kind of unusable for my purposes (it's the "t …
0
votes
2answers
20 views
Android Intent-filter working for Magic, but no Hero, what could be the problem?
Hi
Im working on an application that got an acivity that is set to have intentfilter
<intent-filter>
<action android:name="android.intent.action.RINGTONE_PI …
0
votes
3answers
49 views
how to install unsigned android application on the device?
Hi,
Currently a team of developers is working on Android application and during the development process testers already have to test the current state and report issues.
So far I …
0
votes
1answer
34 views
How come a user reported tiny text on a Motorola DROID android-based phone?
A user of my Android App reported that he was seeing tiny text. How is this possible? More importantly, how can I use the emulator to be sure that my changes will fix it?
Backgrou …
0
votes
1answer
11 views
How to change notification sound by code in android?
Hi all
Anyone knows how to change notification sound by code in android.
I have managed to set the default ringtone, but cant find a way to set the notification tone...
I would b …
1
vote
2answers
85 views
Why do many android classes (examples and source) begin with “m”?
I have been looking over some of the android source, and the examples given in the Dev guide, and I notice that many of their classes begin with the letter m, as in the example bel …
0
votes
1answer
53 views
System.currentTimeMillis() returns always 0 on Motorola Droid
The call to System.currentTimeMillis() returns always 0 on Motorola Droid, Android 2.0.
There is no mentioning in changes to System in the API differences between 2.0 and 1.5, so …
3
votes
4answers
124 views
Is there any form designer available for Google Android.
Hi, I am a new comer in Android development, I have downloaded and installed the Android SDK, but not find any GUI or Form designer, can any one know about some Form designer in fo …
0
votes
1answer
24 views
Slider control in Android…is SeekBar really my best/only option?
I'm using SeekBar as a slider because I can't find anything else, but I have to do so much hacky work because it doesn't allow me to set a minimum value or go in between ints. So, …
0
votes
1answer
16 views
Android Contacts application theme/style
Hi,
Can you please tell me why the android Contacts application theme/style is using 'dark' theme? For example, the activity's background is Black instead of White.
I have looked …
3
votes
4answers
55 views
How to strengthen Java ME eco-system
These days everyone who worked in mobile software talks about Android and iPhone.
I just wonder what is missing part from Java ME compared to these mobile software platforms.
Ope …
1
vote
2answers
44 views
How do you test an Android application across multiple Activities?
We are building a complex Android application consisting of many screens and workflows spread across many Activities. Our workflows are similar to what you might see on a Bank's AT …
0
votes
2answers
34 views
Android: SQLite and ListViews
Firstly, I have found many examples of how to grab data from a db and place it into a list, however this seems to be all for ListActivites.
My list is part of the UI and therefore …
