android

How to draw a line between points in google map in Android

Hello I already wrote a program that read locations from android GPS ; each locatin(long , lat) will be sent to remote server to save it and display it in a website map. what I'm trying to do now is to display my path in android by drawing line between the points I didn't find any sufficient answer until this moment! so how this can ...

How many android apps are open source?

I know that the android plattform is open source. What I am interested in is the share of open source Android apps, thus developers that realease their own apps under a open source license. Does anybody have an idea, how to get this information? ...

how to change background color of default notification expanded view ??

when we expand the notification expanded view ,we get a default white background with small squares. how can i change this white background to some other color. ...

Give alert when the file is download from the attachment in android

I download the *.ics file successfully from the mail attachment by using intent-filter. I need to give an alert at the time of downloading the ics file. How to do this? Please help me to solve.This I am new to android. ...

Button click does not start Service in Android App Widget

I'm having trouble starting a Service to update an AppWidget that I'm creating as an exercise. I'm trying to get the latitude and longitude of spoofed location data from DDMS to display in the widget. The widget uses a service to update the TextView, which may be slightly overkill, but I wanted to follow the template that seems to be co...

Determine connection state

Hi, I am trying to determine if my current connection state is WIFI or Cell network (3g/2g... etc) I am using SDK 1.5. Tried couple of technics not realy working. Any working suggestions? Thanks, ray. ...

Why do I get a null pointer exception from TabWidget?

I'm writing an android program in which I have an activity that uses tabs. The Activity public class UnitActivity extends TabActivity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); TabHost tabHost = getTabHost(); TabSpec spec; Resources res = getResources(); LayoutInfla...

Setting values and display Text in Android Spinner

Hi, I need help in setting up value and display text in spinner. as per now I am populating my spinner by array adapter e.g mySpinner.setAdapter(myAdapter); and as far as I know after doing this the display text and the value of spinner at same position is same. The other attribute that I can get from spinner is the position on the i...

download file from the android web browser in sdcard?

HI. I have a Android application in which I want to download file from the web browser file link. But I don't know how can do it? Help me. ...

Mobclix ad not showing

Hello Everyone, I am using Mobclix ad sdk in my application and I am only getting custom ad not others ad from Mobclix server even It has been three days to clicking services on for other ads. Can any one help me about this matter ? ThanksInAdvance ...

android use local service to refresh map UI

I don't need a strict code related answer I just need somebody to tell me what I am missing. My application has to retrieve from a web service (xmlrpc) the positions of some users I know and update their position on a MapView. So I decided to use a Service and an Activity extending MapActivity to show results. I thought about two solutio...

Android dev platform supporting OpenGL ES 2.0: Where to buy?

I plan to port some camera and multimedia algorithms and functionality on a Qualcomm Snapdragon platform running Android. I need OpenGL ES 2.0 acceleration for many algorithms. Which platform is the right one? Also, where can I purchase this? The Android dev platform on Google's website supports on OpenGL ES 1.x Thanks for any input....

2 fundamental questions for the Androgurus ...Can someone guide me

I have'nt plunged into Android Development as yet though Java Classes C++ all that is not new to me. Here are the questions folks. Appreciated any help on these : - If I need to develop test and deploy Android Apps do I NEED AN ANDROID Hardware device or is there a software Android Simulator like VMWARE or Virtual PC , where I can emu...

Android: Issue with acceptable file types via bluetooth

Hi guys, i've got a problem with pushing files to my nexus one: It seems to me that there is only a small selection of file types that are accepted by my phone (such like jpg, gif and so on). I recently tried to push other files to my phone (in my case gpx) and my phone has rejected it automatically... is there a way to bypass or ext...

how to change background color of default notification expanded view ??

when we expand the notification expanded view ,we get a default white background with small squares. how can i change this white background to some other color. ...

Android, Redefine the search button

Hello everybody, After several fruitless searches, I ask this question : How can you redefine the "search" button an android phone? I wish he would serve me something other than display a search box and a keyboard ... Thank you Regards Vince ...

android onActivityResult not calling

Hi, i'm begginer in android i have two screen i'm swithing between the screen but onActivityResult in not calling in my application but i'm getting my mainscreen back.i want result of my second screen plz help me its urgent. this is my code mainActivity.java loadPicture.setOnTouchListener(new OnTouchListener() { public boolea...

Android -- SDK/IDE Layout Bug (w/Custom Layouts)??

Hello all, Can someone tell me if this is a bug in the SDK/IDE: Any custom or extended layout I add to my layout XML causes the IDE to ignore the fact that there are any child views of that layout (they just disappear from the outline view/window), thus making them uneditable via the properties view/window. (I need to extend a layout to...

Anyone know how you can get a Google dev phone to make Android apps?

Hi there, I am thinking about converting my web apps into Android apps to reach the Android market. I do not have an Android phone. Can someone tell me how I can possibly get a Google developer phone (other than going to Google I/O, etc)? I realize this is somewhat of a ridiculous request but I have read blogs of people being enticed by ...

Focus next textview automatically

I have a TextView with android:maxLength set to 3 and another with android:maxLength set to 7. I want focus to automatically move to the second TextView once the 3 chars of the first TextView are filled up. Is this possible without inheriting TextView and writing a custom implementation ? ...