I'm developing an Android game using Windows 7 64 bit. My Android device is a Samsung Vibrant running version 2.1.
I installed the USB driver software on my machine using SDK Setup. The phone has USB debugging turned on.
When I plug in the phone, Windows automatically searches and fails to locate the driver.
I go to device manager and...
I'm creating an Android app, where the user starts out seeing a list of questions. When the user clicks a question, I would like to show him a new clickable list, containing that question and its answer alternatives.
My questions reside in rows in the database. The questions live in the first column, while the answer alternatives live i...
Hi all,
I'm working on an app for a client that requires streaming of an AAC audio stream. Unfortunately, there's nothing I can do about the stream format on the server. I'm working on Android and have discovered that Android's media player does not support raw AAC streams (which is what I'm getting). I found a project on Google Code...
Hi all,
in Android is it possible to insert a sqlite timestamp into a database using ContentValues?
When I try to add it using something like
ContentValues args = new ContentValues();
args.put(MY_DATE,my_date);
I get an error telling me that my_date needs to be a string
...
I've been following this tutorial:
http://www.droidnova.com/playing-with-graphics-in-android-part-iii,176.html
To get comfortable with Android. It's been very, very helpful.
In it though, he uses one thread to handle input, and another for drawing to the canvas.
This is my first time using threads, and I am wondering if it is wise to pu...
I'm trying to create an application that can use the android as a fax machine, IE Send a picture as a fax or receive a fax and save as a picture. So far I'm starting from the ground up and making sure I can intercept a call at the users discretion. I have an Receiver registered in the Manifest of my program with a filter of Phone_State w...
I followed the instructions here on how to create an Android library project, and use it in an Android application:
http://developer.android.com/guide/developing/eclipse-adt.html
but it is not working. I can see the library project is added to my application but I cannot reference anything in it because it won't build. The R.java file ...
Hi all,
I have a very simple question about menu control in Android. I'm writing a program that performs some simple numeric calculations and outputs an answer. My question is how do make the program move to second screen when a button is pressed, and how can I let the user move back to the original screen.
Here's a quick example
Scree...
I'm working on a site that's supposed to scale fluently down to low resolutions, so that it would work just as well on a phone. This works well in Firefox and Chrome when I just make the window small, but when I try it out on an actual Android phone (Nexus One running Android 2.2), it renders it super-huge! (Using JS's window.innerWidt...
I am interested in making an application that does various things, but I am having trouble getting a static image, such as an avatar off of a web page.
Any ideas?
...
I have an API Object that I made, and I would like to share it between a running Service and various Activities in my app, almost like if I was to make the class static. How could I go about sharing the created object between the two?
...
Is there any easy way to stamp bitmaps along a line in Android? I've found the PathDashPathEffect class but that only allows Paths to be stamped, rather than bitmaps. It seems like it should be possible, but I'm not sure where to start.
I could obviously just draw bitmaps along the line, but it seems to me like that would be a bit more ...
Hey guys,
I have the Uncertain number of GeoPoint, i want to display them all on the google maps. I don't know how to do it.
thank you!
...
This is probably related to this question. I want to know if anyone else gets the same error as me and if there is a way to get around this.
I did the following:
Followed the instructions from this page.
From the top, go to File -> Create a new project -> Android Project -> Create project from existing sample.
Checked Android 2.2.
...
How could i inflate my custom view using the main.xml file? I thought it carried the format of
<com.blah.project.MainClass.innerClass />
but I cant seem to get the fully qualified name of my inner class right. My customView is inside of my Main.java file, anyone know how I could properly reference it? Thank you.
...
Hey,
Have had this happen alot, I forget to select the .java file before running an android app from Eclipse.
I have a .xml selected, press Run and the projectfile breaks.
How do I fix it?
...
I'm an Android newbie trying to learn how to port one of my apps to the Android platform. I've been following this tutorial:
http://www.vogella.de/articles/Android/article.html#overview
I'm stuck unable to boot up the emulator :( When I tell it to start, it would just stick at the "Android" boot animation for hours on end. I searche...
I am creating a project in which i need to take in some numbers, makes some calculations and then on a new screen create show the answers. I am using an Intent object to go to the new screen:
final Button button = (Button) findViewById(R.id.save);
button.setOnClickListener(new OnClickListener()
{
public void onClick(V...
I have 2 phones.An HTC Desire and a Sony Ericsson xperia X10.How do I go about rooting these phones to remove apps and add my own when I create them?
...
Steps to reproduce:
Make a AutoCompleteTextView
Click on AutoCompleteTextView -> OnScreenKeyBoard is displayed.
Press a few characters, AutoCompleteTextView has new characters and Popup appears.
Press done. OnScreenKeyBoard hides (using InputMethodManager.hideSoftInputFromWindow)
Auto complete popup is still there.
If I touch the sc...