Re: [android-developers] Re: Some coding errors from a novice

2010-11-16 Thread sathvik
For the first part of your question - Answer is -- thats referencing problem , Image is not found in the drawable folder. as appbee suggested , put ur image in drawable folder i.e. res/drawable in ur workspace, if that folder is not there , create it and put the ok.png / ok.jpeg in it. Second part

[android-developers] ViewFlipper seamless transition (like the activity fly in/out)

2010-11-16 Thread Hatch
Hi. I just get this. I would like the ViewFlipper animation to look (almost) the same as the native Activity show/disappear. I currently have fly-out-to-left and fly-in-from-right animations when user clicks Next, but the animation is not smooth. *Out to left:* Animation outtoLeft = new Transla

[android-developers] Re: Some coding errors from a novice

2010-11-16 Thread appbee
To answer the first part of your question... android:src="@drawable/ok" means there should be an image file called ok.png or ok.jpg in the drawable folder. Look under res for the drawable folder. You can add any image file in the drawable folder and reference it using the above code. Hope this hel

[android-developers] how to present the renderbuffer on the screen?

2010-11-16 Thread 袁堂夫
I use opengl es 2.0 to draw some picture,and create the FBOs, but how to present the renderbuffer on the screen? --code like this glGenFramebuffers(1, &viewFramebuffer); glGenRenderbuffers(1, &viewRende

[android-developers] ViewFlipper jump to 'page'

2010-11-16 Thread Hatch
Is it possible to tell the flipper to jump to a given view instead of navigating using showNext() and showPrevious() ? I would like my ViewFlipper to start at page N instead of the first one. Cheers, Hatch -- You received this message because you are subscribed to the Google Groups "Android De

[android-developers] Re: How to read the current frame buffer

2010-11-16 Thread Vic
Hi, View.getDrawingCache() cannot capture surfaceview So it does,'t work for me. BR Vic On 11月17日, 上午6時16分, Per wrote: > Not sure what you mean byframebuffer, but maybe > View.getDrawingCache() would work for you? > > http://developer.android.com/reference/android/view/View.html#getDraw... > > I

[android-developers] Re: where cluase help in android

2010-11-16 Thread pramod.deore
Hi, Bibek after changing query like try { sampleDB = this.openOrCreateDatabase(SAMPLE_DBNAME, MODE_PRIVATE, null); Cursor c23 = sampleDB.query(SWITCH_TABLE_NAME, new String[] {"SwitchID"}, "RoomID = "+rID ,n

[android-developers] Re: Best Design for Android App

2010-11-16 Thread Doug
On Nov 12, 8:12 am, Matt wrote: > I'm developing an app > that has one essential requirement: intercept an incoming text message > and send it off to an application on a remote server. > ... > but I am worried about android's ability to > process many of these requests in a short time period. I ne

Re: [android-developers] comprehensive list of various network subtypes?

2010-11-16 Thread Kumar Bibek
The Commectivity Manager has a method called getNetworkInfo which will give you a list of different types of networks and their current state. However, these are not carrier dependent, rather device dependent you can say. Almost all devices have all these types of networks. On Wed, Nov 17, 2010 at

[android-developers] escape characters not working "\n"

2010-11-16 Thread kampy
hi i am displaying the attachments that are for a mail but i am unable to display all the attachments as the newline "\n" is not working . can anyone tell me how can i implement the escape characters on the textview -- You received this message because you are subscribed to the Google Groups "A

[android-developers] Problem in loading image on the layout on clicking button.

2010-11-16 Thread Alok Upadhyay
hii, in my android application there are number of images in drawable folder. in my layout two buttons: back and forward button.on clicking next and back buttons different-2 image get loaded on the same layout(common for all images). Problem:i am able to load images in next button click but as i cl

[android-developers] Re: Mutating of nine-patch images

2010-11-16 Thread Евгений Григорьев
I understand "stretching" of image, but there is some other changing of image. There is simple way to see this: Just create 1-pixel thin round- rectangle line. And using "draw9patch" set top stretchable area: 1 middle pixel, and left stretchable area: 1 middle pixel. If use this picture as backgrou

[android-developers] comprehensive list of various network subtypes?

2010-11-16 Thread Rob Franz
If I have something like: mConnectivityManager= (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE); NetworkInfo mActiveNetworkInfo= mConnectivityManager.getActiveNetworkInfo(); Log.d(TAG, "network info -> subtype name: " + mActiveNetworkInfo.getSubtypeName()); I would get this i

[android-developers] Re: Detect when Google Maps has finished downloading new tiles

2010-11-16 Thread Adam Hammer
I could use this too, I render maps to a offscreen bitmap and then render it on-screen using opengl. Knowing when the current map area is downloaded would be very useful. I currently use a exponential falloff for refreshing/binding the textures which seems to work pretty well, but if I knew as data

[android-developers] Re: where cluase help in android

2010-11-16 Thread pramod.deore
Hi Bibek Thanks, I had tried it as public int getCurrentSwitchID(int rID) { System.out.println ("Here rID is"+rID); try { sampleDB = this.openOrCreateDatabase(SAMPLE_DBNAME, MODE_PRIVATE, null);

Re: [android-developers] Android HttpPost and HttpGet

2010-11-16 Thread Kumar Bibek
I guess, this is a PHP question, and not related to Android. On Fri, Nov 12, 2010 at 9:14 PM, Krt wrote: > Hi all, > > Android: 2.1 SDK > > I have a hello.php running on standard Linux host. (Ubuntu 9.01 with > Apache2 web server) > > In android I have a simple activity which sends HttpPost or H

Re: [android-developers] Weird cursorIndexOutOfBoundsException

2010-11-16 Thread Kumar Bibek
Check you table if it has any records. android.database. > > CursorIndexOutOfBoundsException: Index -1 requested, > with a size of 1 On Sat, Nov 13, 2010 at 2:19 AM, Miiohau wrote: > I am getting a Weird cursorIndexOutOfBoundsException > The logcat: > 11-12 13:17:01.545: ERROR/AndroidRuntime(

Re: [android-developers] Best Design for Android App

2010-11-16 Thread Kumar Bibek
Well, there can be many situation which you have think over about. Networks can go on and off, and if the requirement of sending off the messages immediately is very important, then obviously, http post would not work all the time. You can however make it a combination of both the things. And, wel

[android-developers] Re: Camera saving corrupted photos

2010-11-16 Thread Stephen Lebed
Thanks Guys! I think it is a bug, so I'll post it. Strange, but I will have to test my code on my friends Droid to see if the issue is there as well. Best, Stephen On Nov 15, 4:03 am, Mark Murphy wrote: > Agreed. I tossed out the manifest change as an idea just in case the > bug was somehow t

Re: [android-developers] Can not start the Email?

2010-11-16 Thread Kumar Bibek
Morever, I don't think you are really trying to view an Email. The action of the intent should be SEND type. There is no component that recognizes the View intent with email Uri. On Wed, Nov 17, 2010 at 7:03 AM, Mark Murphy wrote: > Because GMail does not enable that component until there is 1+ >

Re: [android-developers] Re: Loading an image on android emulator screen

2010-11-16 Thread Kumar Bibek
Use ImageView, set the "src" to the required drawable, it it works. On Wed, Nov 17, 2010 at 7:15 AM, hari wrote: > no,not as a background... I just want the image to be displayed on the > emulator screen... > > > On Nov 16, 7:52 pm, Manori Thakur wrote: > > Can you please elaborate?...loading a

Re: [android-developers] where cluase help in android

2010-11-16 Thread Kumar Bibek
Read up about simple SQL Statements and then you can use the sampleDB's query method to get a cursor. On Wed, Nov 17, 2010 at 10:59 AM, pramod.deore wrote: > I have a table like > > sampleDB.execSQL("CREATE TABLE IF NOT EXISTS " + >SWITCH_TABLE_NAME + >"(Sw

[android-developers] wikipedia web service for android.

2010-11-16 Thread sat
Hi, Is there any wikipedia web service which can be used in android. I googled it and found web service for Java as under construction. How to access wikipedia articles , Are there any rss feeds for wikipedia(which I can do a SAX parsing and access the article details ? or Are there any web servic

Re: [android-developers] Re: How to arrange the primary key in ascending order

2010-11-16 Thread Kumar Bibek
Rather than arranging this records while inserting, you should do it while retrieving the records by using the ORDER BY clause. On Wed, Nov 17, 2010 at 9:06 AM, pramod.deore wrote: > Sorry in subject line I say 'arrange primary key in ascending order' > but roomID is not primary key. > > On Nov

[android-developers] where cluase help in android

2010-11-16 Thread pramod.deore
I have a table like sampleDB.execSQL("CREATE TABLE IF NOT EXISTS " + SWITCH_TABLE_NAME + "(SwitchID integer primary key autoincrement,SwitchName VARCHAR,RoomID integer,RoomName VARCHAR);"); sampleDB.execSQL("INSERT INTO " +

Re: [android-developers] Re: Problem with UI Thread which hangs up

2010-11-16 Thread Kumar Bibek
You should look at examples of ListView with different ViewType, http://stackoverflow.com/questions/3918316/multiple-cell-types-in-android-listview This might give you an idea how to proceed. -- Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com -- You received this message becau

[android-developers] Re: Problem with UI Thread which hangs up

2010-11-16 Thread umakantpatil
Thanks Kostya Problem is not with sorting. Problem is as follows: I have three view to be shown. First white article, Second grey article and third is the belt which shows date. I wanted to know how to handle such things in getView. On Nov 16, 10:48 pm, Kostya Vasilyev wrote: > If you need you

[android-developers] How to access voice input settings

2010-11-16 Thread kevindroid
Hi, I am not sure at what point this setting has been introduced, I have seen it on 2.1 and 2.2. It has "voice recognizer settings" in it, in there you can set Language, SafeSearch and Block offensive words. How do I access those settings from API? Especially I want to know if the language is se

[android-developers] Re: Thread handling problem in Test Case

2010-11-16 Thread Mahabaleshwara Vasishta
Thanks Doug, :) On Nov 16, 12:28 pm, Doug wrote: > You will have to have the main test thread wait for a response from > the server test thread.  If you are waiting for a callback with the > response, that callback should notify the main thread which needs to > be waiting on that signal.  Pick yo

Re: [android-developers] For Google about BaseAdapter class

2010-11-16 Thread Julian
Hi, I guess Robert is right since my code look like this (inside an AsyncTask), but the exception appears from time to time, not always but enought for being annoying. int i=0; do { Plan aux= new Plan((SoapObject)itemsSeccion.getProperty(i)); planes.add(aux); publishProgress(); i++; }while(i

[android-developers] Re: Data Connection Retries

2010-11-16 Thread Hemant
I was talking about number of data connection attempts using RIL_REQUEST_SETUP_DAT_CALL. I am not trying to use anything, but want to know what I can use to control above requests so that android does not request more than attempts in an hour to setup data connection (pdp context)? Are there any p

[android-developers] Re: How to arrange the primary key in ascending order

2010-11-16 Thread pramod.deore
Sorry in subject line I say 'arrange primary key in ascending order' but roomID is not primary key. On Nov 17, 8:34 am, "pramod.deore" wrote: > I have a table like this > > public void insertToSwitchTable(String switchName,int roomID,String > roomName) > { > sampleDB.execSQL("CREATE TABLE IF NOT

[android-developers] How to arrange the primary key in ascending order

2010-11-16 Thread pramod.deore
I have a table like this public void insertToSwitchTable(String switchName,int roomID,String roomName) { sampleDB.execSQL("CREATE TABLE IF NOT EXISTS " + SWITCH_TABLE_NAME + "(SwitchID integer primary key autoincrement,SwitchName VARCHAR,RoomID integer,RoomN

[android-developers] Re: LG GW620 LinkMe - Softkeyboard Issues

2010-11-16 Thread GPU
Did u tried with any other Softkeyboard other than default SoftkeyBoard? On Nov 12, 4:16 pm, darq wrote: > Hi all, > I've a problem to show the virtual keyboard in the subject's phone. > > In order, forcing the opening with the android api (without using > system editbox), the soft keyboard doesn

[android-developers] Re: Delayed click events mystery

2010-11-16 Thread jotobjects
For future readers - The problem described in the above posting was a side effect of using a ListView incorrectly. We were keeping references to the Views inside the individual rows of a ListView. This conflicts with ListView's internal View caching and recycling. We replace that with a LinearLayo

Re: [android-developers] Business Card Sample / targets 1.5 and 1.6 vs 2.0

2010-11-16 Thread Dmitri Plotnikov
You need to compile it under 2.*, but it will still run under 1.5. On Tue, Nov 16, 2010 at 11:24 AM, pandre wrote: > Hi everyone, > > I would like to know what I have to do in order to have the Business > Card Sample in SDK 3 (android 1.5), because it uses some stuff that > does not compile in a

[android-developers] Re: How to reduce heap size to get space for BitmapFactory.decodeFile()

2010-11-16 Thread DanH
Receive the encrypted files into files on the phone, and then encrypt them in stream fashion. Or decrypt the stream as it arrives. There should be no need to have the entire file in heap while you decrypt it, and decryption itself shouldn't taken that much heap. On Nov 16, 2:31 pm, manayv wrote

Re: [android-developers] Detect when Google Maps has finished downloading new tiles

2010-11-16 Thread TreKing
On Tue, Nov 16, 2010 at 12:07 PM, John wrote: > If my overlays are downloaded first, as new Google Map tiles arrive, my > overlays get removed or the whole map blinks. > Can you elaborate on what you're doing? I use a map view with locally stored images (no downloading) and they ALWAYS show up f

Re: [android-developers] Re: Transfer Preferences from demo to paid app

2010-11-16 Thread TreKing
On Tue, Nov 16, 2010 at 4:33 PM, String wrote: > FWIW, this trick hasn't worked for me since Donut. Anyone else able to get this to work or not? It's works for me on G1 1.6 and Nexus 2.2 (and did on 2.1 too). I can't be the only one. String, have you tried clearing the Market cache and / or data

[android-developers] Re: Loading an image on android emulator screen

2010-11-16 Thread hari
no,not as a background... I just want the image to be displayed on the emulator screen... On Nov 16, 7:52 pm, Manori Thakur wrote: > Can you please elaborate?...loading an image as background? > > Cheers, > manorit > > On Tue, Nov 16, 2010 at 4:50 PM, hari wrote: > > Guys, let me first tell u t

Re: [android-developers] Can not start the Email?

2010-11-16 Thread Mark Murphy
Because GMail does not enable that component until there is 1+ accounts defined. Use PackageManager and queryIntentActivities() to see if your Intent will resolve to anything. On Fri, Nov 12, 2010 at 9:51 AM, Yong Ma wrote: > The test code is below: >     Intent intent = new > Intent(Intent.ACTIO

Re: [android-developers] Add new item in SMS context menu

2010-11-16 Thread Mark Murphy
No, sorry. On Fri, Nov 12, 2010 at 12:26 PM, Vijay wrote: > Can I add a new item in SMS context menu which can in turn invoke my > app/activity ? If yes help will be appreciated. > > Thanks, > Vijay > > -- > You received this message because you are subscribed to the Google > Groups "Android Deve

[android-developers] Re: How to reduce heap size to get space for BitmapFactory.decodeFile()

2010-11-16 Thread Hal
If feasible, you might want to send smaller encrypted chunks instead of the whole encrypted file. Just a thought... (without knowing all the specifics). This would reduce the required amount of memory. I'm familiar with this approach but going the other way (uploading files to the server).

[android-developers] Re: HTTPClient post delay

2010-11-16 Thread Hal
We are not getting that type of delay. You may to try URLConnection. Just a thought . The following is an example. // Post request private String doPost (String request) { URLConnection urlConn; URL destURL; DataOutputStream outStream; DataInputStrea

[android-developers] Mms reopen problem?

2010-11-16 Thread Yong Ma
In Mms, I open the ConversationList and tap a conversation to open the ComposeMessageActivity, then Case 1: press "Home" to back to homescreen and reopen Mms, the ConversationList will be shown. Case 2: press "Home" to back to homescreen , long press "Home" , and then repen Mms in the recent Apps,

[android-developers] Re: ACTION_PHONE_STATE_CHANGED broadcast doesn't fire my broadcast receiver

2010-11-16 Thread Raj
Had this same problem with the phone state intent and couldn't understand why until I read your post. Thanks for posting your experience! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-develo

[android-developers] very most powerful information health information

2010-11-16 Thread abdur rahman
hello; my friends I want to share very powerful love info tips I did not never sen before online-http://graden-loveinfo.blogspot.com/ -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@go

[android-developers] Best Design for Android App

2010-11-16 Thread Matt
Hi everyone, I have been playing around with the sdk for a little while now, and I'm becoming comfortable with java and the android platform (I've previously coded in php for many years now). I'm developing an app that has one essential requirement: intercept an incoming text message and send it o

[android-developers] how to get beahviour of finish() when user clicks on back button in case of intent.action_dial

2010-11-16 Thread Rahul Sapra
hello developers please help i am new to android.. i am showing Intent.ACTION_DIAL when my application starts..but when i clik back button it shows a activity page and again press back button it finishes the activity.. i want when application starts dialler shown and if user cliks back button it

[android-developers] Android HttpPost and HttpGet

2010-11-16 Thread Krt
Hi all, Android: 2.1 SDK I have a hello.php running on standard Linux host. (Ubuntu 9.01 with Apache2 web server) In android I have a simple activity which sends HttpPost or HttpGet to the above hello.php with some parameters in URL. Irrespective of HttpPost or HttpGet in my php always $_GET has

[android-developers] ERROR/AndroidRuntime(584): java.lang.SecurityException: Permission Denial: not allowed to send broadcast android.provider.Telephony.SPN_STRINGS_UPDATED

2010-11-16 Thread Unnikrishnan
the piece of code i have written is private Message mMessage; static private Looper sLooper; static private Phone phone; static PhoneFactory phf; phf = new PhoneFactory(); phf.makeDefaultPhone(this.getApplicationContext()); //phone = phf.getD

[android-developers] Moving background image for android game

2010-11-16 Thread elioncho
Hello, I'm currently developing an Android game where the user controls a plane and evades obstacles. I'm using simple draw commands into a Canvas. I want to know what is the best way to move a background image to give a sense of speed to the game. Is there a way to make the background- image rep

[android-developers] XmlPullParserException: unexpected type

2010-11-16 Thread Fab
Hi, I'm trying to do a Xlet application for J2ME and I need to access to a web service using kSOAP2. For now I have my local web service, and I'm trying to make a simple request and response with kSOAP2. I send this request: request: http://www.w3.org/2001/XMLSchema- instance" xmlns:d="http://ww

[android-developers] Weird cursorIndexOutOfBoundsException

2010-11-16 Thread Miiohau
I am getting a Weird cursorIndexOutOfBoundsException The logcat: 11-12 13:17:01.545: ERROR/AndroidRuntime(329): FATAL EXCEPTION: main 11-12 13:17:01.545: ERROR/AndroidRuntime(329): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.gremlingames.rimblade/ com.gremlingames.rimblad

[android-developers] Andriod apps connect to HID USB Device

2010-11-16 Thread dan
I need to design an andriod app to communicate with HID Custom USB Device. Are there any standard java library that I can use to implement this ? Thanks ! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email

[android-developers] How to connect to a Remote Database with Webservices?

2010-11-16 Thread Pableras
Hi, I have an android APP. I need to connect to a remote D.B. on the internet. All i know is that i have to use a Web Service, installed on the remote DB server. Whith my Android APP i have to connect to the web service, and the web service will do the logical operations to get the necesary data f

[android-developers] Can not start the Email?

2010-11-16 Thread Yong Ma
The test code is below: Intent intent = new Intent(Intent.ACTION_VIEW,Uri.parse("mailto: t...@google.com")); startAcitvity(intent); If I doesn't config the Gmail account in my device, the test code will get an ActivityNotFoundException; and If I config an Gmail account in my device, the t

[android-developers] "Not granting permission" when installing Development.apk

2010-11-16 Thread Andrey
Hello, I am trying to install Development.apk that I extracted from the emulator on a Droid X (using adb) and get some permission denied logs in Logcat: 11-12 16:32:05.655 3789 3803 W PackageManager: Not granting permission android.permission.DEVICE_POWER to package com.android.development (pro

[android-developers] voice recognition -- IVR on Android

2010-11-16 Thread Bruce Xia
hi, I'm developing an app which needs some IVR funtionality -- play a prompt, wait for user to respond, do an action, and loop... Do I have to call "SpeechRecognizer.startListening(new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH));" every time after I play the prompt? Is there a better way? T

[android-developers] Turn off emulator networking

2010-11-16 Thread ScottVickery
I tried this: http://groups.google.com/group/android-developers/browse_thread/thread/65cdc456b93ad2d9/f6bd8d08eee466b0?lnk=gst&q=turn+off+emulator+network+#f6bd8d08eee466b0, and I tried F8 to turn off the cell networking off, but, the emulator can still see the network. Any other ideas? Thanks, Sc

[android-developers] Add new item in SMS context menu

2010-11-16 Thread Vijay
Can I add a new item in SMS context menu which can in turn invoke my app/activity ? If yes help will be appreciated. Thanks, Vijay -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@goog

[android-developers] Re: to load image from drawable folder

2010-11-16 Thread 煮咖啡
You are right. On Nov 12, 11:08 pm, Kumar Bibek wrote: > I am really really confused. How are you including the ImageView that > you have in the activity. I can see that you have created a new > ImageView through code, but haven't added it to the Activity anywhere. > > On Nov 12, 5:21 pm, Alok Up

[android-developers] very most powerful information health information

2010-11-16 Thread abdur rahman
hello; my friends I want to share very powerful love info tips I did not never sen before online-http://graden-loveinfo.blogspot.com/ -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@go

[android-developers] System.nanoTime() for Dual Core processors

2010-11-16 Thread chromeboy
Hello, We are running the DALVIK Virtual Machine tests from 057-iteration- performance/ suite, and we don't There is a static table in test script which defines the various test timming. This table has hard coded values for al lthe expected results. Does this table have to be changed based on th

[android-developers] Android HttpPost and HttpGet

2010-11-16 Thread Krt
Hi all, Android: 2.1 SDK I have a hello.php running on standard Linux host. (Ubuntu 9.01 with Apache2 web server) In android I have a simple activity which sends HttpPost or HttpGet to the above hello.php with some parameters in URL. Irrespective of HttpPost or HttpGet in my php always $_GET has

[android-developers] Multiple activity instances launched by same intent. Bring one uniquely to foreground?

2010-11-16 Thread arbitrary-software
Hi, I'm struggling with my app that launches multiple instances of the same Activity using the same intent. My main activity is of class type A and it does a startActivity() of two children that are of the same class type B. So we have B1 and B2 launched. If B1 and B2 are both paused (by pushing b

[android-developers] APIs available to Flex (AIR)

2010-11-16 Thread Mike
Hi, How can I find out which Android APIs are available to AIR clients? In particular I'd like to know if the Speech recognition API and the Data Storage (SQLite) API is available. thanks -Mike -- You received this message because you are subscribed to the Google Groups "Android Developers" g

[android-developers] Detect when Google Maps has finished downloading new tiles

2010-11-16 Thread John and Michele Jarvis
I'm trying to determine when Google Maps has finished downloading new tiles after a zoom change or panning. I’ve read the discussion about testing for the center coverage tile, but that doesn’t tell me if other map tiles are still being downloaded. I need to know when the last tile has been downl

[android-developers] MediaPlayer - setDataSource failing - Couldn't open fd for content://..

2010-11-16 Thread S
Hi, My app downloads audio files to /sdcard/Music. When I try to play them, I am getting the following error. V/MediaPlayer-JNI( 2789): setDataSource: path content://media/external/audio/med ia/2 E/MediaPlayerService( 1130): Couldn't open fd for content://media/external/audio /media/2 If I dow

[android-developers] Force focus to INPUT contained in Android WebView, show keyboard

2010-11-16 Thread sugarwellington
Hi All, I have an app that just contains a webview. I want a specific input to be selected when the user presses the Search button, and I want the soft keyboard to come up. When I set focus via javascript: @Override public boolean onSearchRequested() { webview.loadUrl("javascript:$('#search_

[android-developers] Re: MOVING BACKGROUND IMAGE FOR ANDROID GAME

2010-11-16 Thread x-a...@gueei.com
Basically the API itself did not provide such 'tiling' animation. But the technique is simple and tons of tutorial related to that is available. Alternatively, you may also look for 2D game engines for Android, I think this is fundamental in game development to support tile animation. On Nov 17, 5

[android-developers] Android adb cannot view Nexus One phone

2010-11-16 Thread appbee
I am running Android SDK 2.2 and am trying to get the adb to connect to the Google Nexus One phone. Its a new phone, shipped straight from Google - haven't installed any apps on it yet. (I have Windows XP SP 2) Here is what I have done so far: - Followed the instructions on setting up the device

[android-developers] Urgent requirement for Java Developer

2010-11-16 Thread Srinivas Gudipati
Hello, We have an urgent requirement for your consultant. * * Job Title: *Java Developer* Duration: 1+ Year Location: Tampa, FL *Requirements/Skills:* * * Core:Java, J2EE (JSP, servlets, struts), UNIX Scripting: Shell (bash, ksh) and Perl Web:

[android-developers] Re: Need help for Google map API

2010-11-16 Thread pepo
Hi, google Maps v3 not more requires a KEY (take a look http://code.google.com/intl/en/apis/maps/documentation/javascript/) Thanks. -- pepo http://javierviola.blogspot.com On 16 nov, 10:10, Kumar Bibek wrote: > Read the docs. All the info is given there. If you are stuck somewhere, let > us k

[android-developers] Detect when Google Maps has finished downloading new tiles

2010-11-16 Thread John
I'm trying to determine when Google Maps has finished downloading new tiles after a zoom change or panning. I’ve read the discussion about testing for the center coverage tile, but that doesn’t tell me if other map tiles are still being downloaded. I need to know when the last tile has been downl

[android-developers] Create Custom Address Book with Information downloaded from the web

2010-11-16 Thread Russell Christensen
I am porting an application to Android which is already available on the iPhone. The application provides the user a list of contacts which it gets from a feed provided by our servers. I don't want to add all of the contacts (could be in the thousands) to the users personal address book, but I do

[android-developers] Business Card Sample / targets 1.5 and 1.6 vs 2.0

2010-11-16 Thread pandre
Hi everyone, I would like to know what I have to do in order to have the Business Card Sample in SDK 3 (android 1.5), because it uses some stuff that does not compile in android 1.5, example: - if (sdkVersion < Build.VERSION_CODES.ECLAIR)... -import android.provider.ContactsContract.Contacts; -imp

[android-developers] Simultaneous Translations on Android

2010-11-16 Thread Pedro Vicente
Hello, I'm trying to do several translations simultaneously on Android. I have 2 or more buttons on a layout (all the same size), and when i press one i want the others to move out of the screen. I've done a test app to try to implement this behaviour. On it i've set a listener on click of one

[android-developers] Android system font size

2010-11-16 Thread enricozhang
Hello, Everybody. I have a problem in my application, do not want to respond to the system set in Setting the font size, I used the controls are Button, TextView, and so, to how to do, be grateful! -- You received this message because you are subscribed to the Google Groups "Android Developers" g

[android-developers] How to handle differences on camera usage on different phones?

2010-11-16 Thread cmonk
Hello, we are making some application on android platform that uses camera. And there is some problem that I don't know how to deal with: 1. Development was made on HTC Wildfire with 2.1 platform and everything was fine. 2. I tested it on my HTC Desire with 2.2 platform (using build for 2.1) and

[android-developers] Handling Telephony

2010-11-16 Thread Shrini
Dear Android Developers, I'm newbie android developer, trying to achieve the following + End the outgoing/incoming call from specific numbers before user picks the call, and + I also want to hide those notification (incoming/outgoing) dialogs As I searched many forums, many discussions, looks l

[android-developers] Dealing with very limited data plan

2010-11-16 Thread katit
Folks, I'm trying to see if my plan realistic at all. I'm ne to Android platform but not new to software development. This is my first post here as well :) We want (in our company) to create Android software to compliment our truck management software. Basically, it will do couple very specific ta

[android-developers] Google Latitude & My Tracks

2010-11-16 Thread Susanna James
Hi everybody! I Would like to ask you if there is a way to join My Tracks with Google Latitude, I mean an integration between those two apps, so we could see information about those applications in only one. I would really appreciate if anyone could help me. Regards, Susanna (L) -- You received

[android-developers] Restricted access to Content Provider

2010-11-16 Thread Sfortza
I'm trying to give limited access to another application to my ContentProvider. I have two special tables. In one I want to give the opportunity only to record data, the second - to hide completely. Other tables can be read there and you can record the data to them. If I just add to the provider

Re: [android-developers] Bar Application wheel

2010-11-16 Thread sathvik
I think you can use progress dialog for that purpose. http://www.brighthub.com/mobile/google-android/articles/43168.aspx On Tue, Nov 16, 2010 at 8:30 PM, Kumar Bibek wrote: > > http://developer.android.com/reference/android/app/Activity.html#setProgressBarIndeterminate%28boolean%29 > > You can u

[android-developers] Re: sqlite returned: error code = 1, msg = table customer has no column named totalpurchase

2010-11-16 Thread Smiley
You may also want to check out this post http://www.designerandroid.com/?p=54 This will help your development -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsu

Re: [android-developers] Re: sqlite returned: error code = 1, msg = table customer has no column named totalpurchase

2010-11-16 Thread sathvik
If you have seriall , I would suggest to check the schema in the application database by sqlite>> .schema and check the column name again(making sure its present in the table) and structure of table. On Tue, Nov 16, 2010 at 6:10 PM, DanH wrote: > First thing to do is to VERY CAREFULLY read the c

Re: [android-developers] Bar Application wheel

2010-11-16 Thread sathvik
I think you can use progress dialog for that purpose. http://www.brighthub.com/mobile/google-android/articles/43168.aspx On Tue, Nov 16, 2010 at 8:30 PM, Kumar Bibek wrote: > > http://developer.android.com/reference/android/app/Activity.html#setProgressBarIndeterminate%28boolean%29 > > You can u

[android-developers] Re: Difference between StageFright and Opencore

2010-11-16 Thread GodOfDeath
Hi Shashank, Could you please point me to online resource which has the architectural details or in depth info of StageFright. regards On Oct 16, 12:21 pm, Shashank wrote: > Guys, > > Opencore is a sophisticated multimedia framework developed by Packet > video company. > > Over the years it ha

[android-developers] Android ARM Direct SD Card I/O

2010-11-16 Thread meconin
Hi, I need to directly read/write a file on sd card without cache. I can use "posix_fadvise" to achieve the purpose on Ubuntu I try NDK to make the function call, but it seems disabled on Android How can I do? Sincerely, meconin -- You received this message because you are subscribed to the Goog

[android-developers] Implementing networking in an android app

2010-11-16 Thread bob
Hello, I am just getting started in the world of android. I'm trying to understand which way to implement networking and a network queue in my application, there will be lots of comms for each activity including lots of thumbnail loading. I have read the articles at http://ivolo.mit.edu/categor

[android-developers] How do I Access SIM Menu

2010-11-16 Thread Gatuchiw
I have just bought a Nexus One phone. It is a great piece and I wonder why I did not have it earlier. However there is a problem, I cannot access my SIM Menu. In Kenya we use a lot of mobile banking and sometimes need to forward money or credit using my phone. It is important to access the SIM menu

[android-developers] Android support for Broadcast Technologies

2010-11-16 Thread Ayat
Hi all, I'd like to know if there's (os it's planned to be) any support for technologies like DVB-T, DVB-SH or [put any broadcast/multicast technology that you know Android supports it]. Thanks, Miguel -- You received this message because you are subscribed to the Google Groups "Android Develo

[android-developers] AutoCompleteTextView focus problem

2010-11-16 Thread vibhu
Whenever focus is set to AutoCompleteTextView the menu, back and othe buttons stop working and the focus is always there on it so m not even able to close the activity -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, s

[android-developers] Website Creation Tutorial for Beginners

2010-11-16 Thread naveed1197
Many people now a days want to Earn money online from Google. http://freeit11.blogspot.com There are many ways and programs that may help you to earn money like PTC Programs, PTR Programs, PTS Programs, Programming Jobs, Stock Exchange and http://freeit11.blogspot.comData Entry Jobs. The problem

[android-developers] Problem using cancel method from a Toast in Main UI Thread

2010-11-16 Thread Maxime
I want to cancel a Toast to show the next one. This is the description of the behavious I want, when I select one element in the menu i display a toast from the actuel menu element, but if i switch from one element to an other quickly i'm creating a list of Toast to display. So i need to cancel th

[android-developers] How to save current state of canvas as an image in android

2010-11-16 Thread sooraj sharma
hi, I'm developing an application which allows user to edit an image and save that edited image as new image on sd card I want to get the current state of the canvas object. please help me with this. -- You received this message because you are subscribed to the Google Groups "Android Developers"

[android-developers] Some coding errors from a novice

2010-11-16 Thread James
Hi, I'm a beginner android developer, and I've only been coding for a few months. I'm testing some layouts in a project using eclipse, and I'm following the guidelines from a textbook (beginning android 2.0) and I'm getting some rather perplexing errors. The first error is in my main.xml. my code i

[android-developers] How to save current state of canvas as an image in android

2010-11-16 Thread sooraj sharma
hi, I'm developing an application which allows user to edit an image and save that edited image as new image on sd card I want to get the current state of the canvas object. please help me with this. -- You received this message because you are subscribed to the Google Groups "Android Developers"

[android-developers] cell tower status

2010-11-16 Thread spencer
Please how would I display the cell tower status in google map? Could you provide me some codes or example? Fradel -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To u

  1   2   3   >