Android :: Platform For Developing All Things Google
Jul 13, 2009
I am interested in developing things for google apps and android using python and java. I am new to both and was wondering if a environment set in windows or linux would be more productive for these tasks?
View 4 Replies
Jul 30, 2010
More and more mobile platforms are being launched and sdk's are available to developers. There are various mobile platform are available,Android,iOS,Moblin,Windows mobile 7,RIM,symbian,bada,maemo etc.
And making of corss platform application is headache for developers. I am searching common thing across the platforms which will help to developers who want to port application to all platforms.Like what is the diff screen resolution, input methods, open gl support etc. please share details that you know for the any of platform . or is there possibilities , by writing code in html (widget type of thing) and load it into native application. I know about the android , in which we can add the web view into application. by calling setContentView(view)
Please share the class details where we can add the html view into native application of different type of platforms that you know.
Purpose of this thread is share common details across developers. marking as community wiki.
Cross platform tools & library
View 5 Replies
View Related
Mar 21, 2010
I have the latest version of Eclipse, Google Android SDK, Subclipse (not sure if that's relevant) and Google App Engine plugin.
While trying to work on an Android project, I ALWAYS get the following error:
"The applet is attempting to access the file "isFile" state attributes..."
Plus 3 buttons: Allow, Disallow and Stop applet.
It keeps popping this message, sometimes 10-20 times in a row until it leaves me alone. Then on the next file save, update or changes to the project, it shows the message again.
Here's a screenshot:
http://dl.dropbox.com/u/45692/error.JPG
View 2 Replies
View Related
May 2, 2010
I was checking out the Google Maps Data API and I was wondering if I can follow their Java Development guide to use it on the Android platform? I want to display routes that I have created on Google Maps on the phone.
View 1 Replies
View Related
Sep 8, 2009
Snow Leopard has been published for several weeks, Eclipse also provide an 64bit Cocoa version on 3.5, but the Android SDK still only support the 32bit mode on Mac, why? It's emulator also still use QuickDraw to draw interface, maybe Google has forgotten us.
View 2 Replies
View Related
Nov 22, 2010
As an experiment, I would like to use the platform key of my custom built Android platform to sign an arbitrary APK, that is built via the NDK. What is the process to go about doing this?
View 2 Replies
View Related
Oct 21, 2010
1) What Android-compatible hardware platforms (boards, like "beagle board") can you recommend for hobby robotics? Where can I see a list of Android-friendly boards with support of serial (or parallel) connections?
We are going to move our Java ME robotics project (http:// www.RoboHobby.com) to Android platform, but what hardware to choose?
2) What can you say about support of serial connection on Android- based phones? Does it work in reality? As I remember, in the Java ME world not all cell phones manufacturers supported serial connections on their J2ME implementations. For example serial connections were supported on some models of Siemens and Sony-Ericson, but they were not supported on Nokia and Sumsung, etc.
What is going on with serial connection support in the Android World? Is this supported in reality? On which cell phones?
3) Is it possible to use on Android devices (boards) not BlueTooth/USB conection, but wired connection, like RS232 "COM" port on PC?
I see funny wordplay - Android as a Google project and Android as a human-like robot. :-)
-- http://www.RoboHobby.com - Java Robotics, Code Examples. PICkit2 tutorials, J2ME mobile phone Java as a robot's brain, KAP (Kite Aerial Photography)
View 3 Replies
View Related
Apr 17, 2010
First of all, I just want to say I am a software developer, but I am not an Android developer. However I usually walk around and think on stuff. AndI've been recently thinking all the news concerning how fragmented Android is getting, with different Android versions and tweaks by different phone manufacturers, and then for developers you have different size formats. An example would be that HTC Tattoo might not be able to run everything that another phone might run, due to different screen formats, etc. And now the Android tablets are coming with different Android versions and different screen sizes, all from 5" to 11". Will this make developing Android applications harder? Apple has it safe here since they manufacturer all devices that run the iPhone OS: the pods, phones and now the pad so they can easily control and make sure not to loose any customers by introducing a new device. When Apple introduced iPad they had to make sure that all the old iPhone applications would work on the iPad. They solved that neatly by saying that iPhone applications will simply be stretched out to the double size and it would fit on the iPad. Unfortunately Android does not have the same luxury to do this. As I said, I am not an Android developer. Just a curious software developer For you guys who work actively in the Android community, does Google have a solution for this? Will you be able to run phone applications on the tablets? Is there a bridge between the devices? Are there any standardizations or will Android development become even more fragmented? you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-devel
View 2 Replies
View Related
Jul 17, 2010
I followed this tutorial: http://developer.android.com/resources/tutorials/views/hello-mapview.html
and it runs ok, except when I click on my icon in the map, the dialogue box does not come up. And the application stops.
I don't know what is google api; can someone explain it to me please? Does this mean that the code in above tutorial will not run on an android handset?
Here is my code:
CODE:.....................
View 1 Replies
View Related
Jun 29, 2010
I am working on a mobile app on the Android platform (and going forward for the iPhone) and am evaluating the Flurry Analytics and Google Analytics platforms for the app. Both platforms have SDKs for the Android and the iPhone and seem very similar in most ways.
View 3 Replies
View Related
Jun 6, 2010
what are the new things in android 2.1?
View 7 Replies
View Related
Jul 5, 2010
So now that it's out and taking up 22 megs on my phone. What things use it?
View 4 Replies
View Related
Aug 2, 2010
I'm new here and I want to start things out by asking you guys about certain things Android is lacking. As many of you know, the OS is only a year old but is rapidly evolving. I don't own an Android device yet (I currently have the HTC HD2). I'm waiting for Android to grow considerably bigger so I won't have to worry about future upgrades. Android is an awesome OS and a lot of devices carrying the OS is very good, but I feel there are some things is still lacking. In your opinions, what are the things still lacking? I can only think of one (only because my brain is dried out from work): full flash support. I guess you can also add: more memory but this is more of a micro-SD card issue instead of Android.
View 17 Replies
View Related
Apr 7, 2010
I just about got this, but I have a small problem in the order of things going off.
Specifically, in my thread() I am setting up an array that is used by a Spinner. Problem is the Spinner is all set and done basically before my thread() is finished, so it sets itself up with a null array.
How do I associate the spinners ArrayAdapter with an array that is being loaded by another thread?
I've cut the code down to what I think is necessary to understand the problem, but just let me know if more is needed. The problem occurs whether or not refreshData() is called.
Along the same lines, sometimes I want to call loadData() from the menu. Directly following loadData() if I try to fire a toast on the next line this causes a forceclose, which is also because of how I'm implementing ProgressDialog.
CODE:...............
I tried changing onCreate() to the following after Jims suggestion.
Not sure if I did this right, still doesn't work:
CODE:....................
View 5 Replies
View Related
Oct 4, 2010
I was wandering is there a way to show a stream or a pic to the screen directly even without the manifest? Or how do I load resources files without using the manifest on the Android platform?
View 1 Replies
View Related
May 27, 2010
I have a smartQ V5 device running Android ( 1.6, I think)I can not do simple unix things (find, more, ... ) on this device.they are not there. Do I aomehow downlooad them? apt-get is not there either; is there an alternative?
View 1 Replies
View Related
Aug 10, 2010
Is there any app that will allow me to stop things starting up all the time on my desire. something that maybe i can block apps starting up unless i want them to.
View 1 Replies
View Related
Sep 12, 2009
I turned on DEBUG_CHECK_GL_ERROR for my GLSurfaceView to try to figure out why I'm having a problem on pause/ resume/reload everything, and when I turned it on, I got an UnsupportedOperationException when calling GL11.glGenBuffers() (for creating Vertex Buffer Objects).
Why is it saying that operation is unsupported when:
1) The vertex_buffer_object extension is listed on the target device and my code checks for it before trying to use VBOs.
2) VBOs are working correctly (and really well might I add).
This is on a G1. Yes, I know the G1 is only OpenGL ES 1.0 compliant and I'm trying to use a 1.1 extension, but if the phone lists the extension, doesn't that mean I can use it? Also - the extension works! Does this mean that it works but use-at-your-own-risk, kinda like how SoundPool was in Android 1.0?
View 2 Replies
View Related
Oct 23, 2009
i'm thinking to start developing in HTC hero. I want to know if i will have any problem because this phone is using SENSE UI interface (an interface developed by HTC). Any suggestion?
View 2 Replies
View Related
Oct 20, 2011
i dont know about the java.How can i write application in 'c' for android.
And what are the steps?
View 1 Replies
View Related
Jun 29, 2010
Forums have a tendency of becoming cesspools of dissatisfaction. I would love to hear what everyone likes about their "superphone".
View 23 Replies
View Related
Sep 21, 2010
I just wanted to know if there are tutorials on emulator development? For each new phone being launched we require to build new emulators to emulate the features and look and feel.
View 5 Replies
View Related
Jun 4, 2010
I am trying to develop soft keyboard in my language, Amharic (Ethiopian language). I start developing the soft keyboard by using the sample soft keyboard with is included in the android SDK. But I have the following questions to ask:
1. How can I include keyboard setting options such as vibrate on key press, sound on key press, etc. such setting options are available in English soft keyboard. If you have any idea about this, please help me.
2. The other question is related to copyright issue. If I can succeed in developing the keyboard and want to sell it in market, am I going to violate the copyright law? Because I have developed this application by using the sample soft keyboard.
View 4 Replies
View Related
Jun 16, 2009
What is the best platform to develop apps for Android on? We have both Mac and Windows platforms available in our software team but are not aware of the pros and cons of each. If anyone could let me know what they prefer?
Should we also condider Linux?
View 2 Replies
View Related
Aug 9, 2010
I have a couple of apps working using eclipse and the emulator. I now want to try the apps on my htc aria. I went through downloading the usb driver as the Android Developers documentations sans and a usb driver folder now shows up in my sdk folder. However, apparently there isn't a driver for the HTC aria in the folder.
After research some people suggested using htc sync. I donwloaded htc sync and let windows check that I had the latest version. However, my phone keeps saying that it can't find htc sync on my computer.
When I plug in my HTC aria, the device manager on my lap top recognizes two devices as listed below: My HTc under Android USB devices and a HTC Android Phone USB Device. I clicked on update driver for both devices, Windows found them on-line and verified that they were the latest. I dont understand why there are two drivers, but My HT seems to have a problem as listed below. One thing that I should mention is that I am using the dreaded VISTA.
Device Manager: Android USB Devices: My HTC Device status: Windows cannot initialize the device driver for this hardware. (Code 37) Click 'Check for solutions' to send data about this device to Microsoft and to see if there is a solution available.
Description: Windows was able to successfully install device driver software, but the driver software encountered a problem when it tried to run. The problem code is 37.
Problem signature: Problem Event Name:
CODE:.................
HTC Android Phone USB Device
Device Status: This device is working normally. Driver Provider: Microsoft Driver Date: 6/21/2006
So, the best I can tell is that there isn't a driver from the normal Android repository for the htc aria yet. And, for some reason my computer can't handle the htc sync drivers.
Will there be a usb driver for the htc aria that I can download from Android Developers in the future? Has anyone else been able to get htc sync to work with the htc aria? Is there anohter way to transfer my apps to the phone for development?
I guess that I can always use the ddms environment and transfer the app, but I really wanted a more graceful way to do this.
View 7 Replies
View Related
Jan 12, 2010
If it's possible to develop on an android device or if it will happen anytime soon?
View 6 Replies
View Related
Aug 12, 2010
I am working on an app that has a homescreen. This homescreen should behave like the android homescreen where you can switch between several views by flinging your finger over the touch screen.
The solution is easy. I have 3 view instances, right, left and current view. I get this instances from the viewflipper that I initialized earlier. Since I have a HTC G1 my sreen is 320 px in width and 480 px in height.
Imagine you capture the down value of a action down motion event when you touch the screen. Then you move your finger and the screen should move in exactly the same way so you have to recalculate the view's position. It works for me so far but I am facing a strange problem. When you touch the right view without moving you finger but keeping it on the screen for less then a second the view disappears and shows the left view.
Here is my code:..........................
I think such a Homescreen for your own app could be a interestion UI element.
View 3 Replies
View Related
Feb 15, 2010
I am new to android games development on mobiles.can any one suggest me which API suitable to develop game. I am using Android 1.5 API for Android mobiles.I need help from you all.
View 2 Replies
View Related
Nov 19, 2010
I'm newbie in developing Android Apps. Currently, I'm going to build an android Location Based Service apps for my undergraduate thesis. I've read some articles about displaying maps in Android but most of them are using Google Maps. Since I'm going to use my own custom map, is there any way to load my map in Android?
View 2 Replies
View Related
May 18, 2010
I am new to Android programming and have tried writing a couple of apps myself. One thing i noticed is that my application was very poor wrt the UI and the design aspects. I want to know what tools/softwares are used for developing the UI for Android apps.
View 6 Replies
View Related