[android-developers] Re: Oauth and google apis

2011-05-06 Thread ko5tik
On May 5, 9:25 pm, patjackson52 patjackso...@gmail.com wrote: I'm working on using google docs list api and spreadsheet api in android.  I'm having trouble getting Oauth to work and there does not appear to be any libraries or sample code on the web.  The only example I have found is a

[android-developers] Re: how to test activity in portrait orientation - honeycomb

2011-05-06 Thread Stephen
Assuming you're using the emulator, you can rotate it by pressing Ctrl- F11 (or Ctrl-Fn-F11 on a mac) Once it's in portrait mode, activities should run with their portrait configurations, no coding required... Stephen On May 5, 9:45 am, jjoe64 g.jjo...@googlemail.com wrote: Hello. I would

[android-developers] how to use same activity for different listviews?

2011-05-06 Thread Hitendrasinh Gohil
hi, how can i use diiferent listviews in single activity.one listview is displayed at a time.and all listviews having different layouts and resources(images,textviews etc). i know two ways:- i)use a seperate activity for each listview ii) in activity we can set some flags. so what are the

Re: [android-developers] Which Reference System is used by the Google Maps Api

2011-05-06 Thread Pepijn Van Eeckhoudt
It doesn't seem to be documented but I would assume they are using WGS-84. GeoPoints are as a lon/lat coordinate so that rules out usage of projected grid coordinates. The correct definition of the 'google projection' can be found in epsg:3857. That essentially says to project WGS84 ellipsoid

[android-developers] Downloading other applications from a stub

2011-05-06 Thread qwesthead
We develop and publish several Android applications. Some of them are dependent on others. For ex: App3 is dependent on App2 (which is a service) is already installed and running. In App3 we would like to check if App2 is not available for binding, download and install it. Since App2 is also

[android-developers] emulator

2011-05-06 Thread Knutsford Software
The emulator for eclipse is very slow to load. One it is loaded and I want to make a change to an app is there anyway to speed it up or do I have to do a run everytime? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

Re: [android-developers] emulator

2011-05-06 Thread Kostya Vasilyev
You can keep the emulator running, just like you would a phone. Eclipse will then just reinstall your application, which is much faster. 06.05.2011 12:39 пользователь Knutsford Software i...@knutsford-software.co.uk написал: The emulator for eclipse is very slow to load. One it is loaded and I

Re: [android-developers] emulator

2011-05-06 Thread Knutsford Software
- Original Message - From: Kostya Vasilyev To: android-developers@googlegroups.com Sent: Friday, May 06, 2011 9:47 AM Subject: Re: [android-developers] emulator You can keep the emulator running, just like you would a phone. Eclipse will then just reinstall your application, which

[android-developers] vineeshkc wants to chat

2011-05-06 Thread vineeshkc
--- vineeshkc wants to stay in better touch using some of Google's coolest new products. If you already have Gmail or Google Talk, visit: http://mail.google.com/mail/b-812ef5fcc6-27d7e9302d-yK35zAHmhrw3uHmEMflDejQQ534 You'll

[android-developers] How to implement bluetooth printer

2011-05-06 Thread Rocky
Hi All, I wants to implement Bluetooth printer on my application, please provide me the process how to achieve this. Thanks -- Thanks Regards Rakesh Kumar Jha -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

Re: [android-developers] jpg to bmp conversion

2011-05-06 Thread Marcin Orlowski
Hi, Understanding image file formats in the 1st place would help - to let you get the picture - In general there are 2 types of image file formats: compressed (png, jpg, gif, tga etc) and uncompressed (bmp) (if you are unfamiliar with the compression really is, look up on wikipedia or so). To use

Re: [android-developers] check before publish with LVL, the Application Licensing

2011-05-06 Thread Marcin Orlowski
If your device you test your app on uses different email address than one your publisher account is on, then server answer is quite correct. In console settings you can add certain email addresses to be considered testers - once you do that you can manually set there what response your app get

Re: [android-developers] Re: SDCard installs - auto or preferExternal?

2011-05-06 Thread Marcin Orlowski
On 5 May 2011 22:10, jtoolsdev brianjto...@gmail.com wrote: The manifest display in Eclipse defaults to auto. On a recent release I set it to preferExternal and there seemed to be some reports of difficulty. Problem is the docs say the same thing for both settings and that the user can move

[android-developers] Aw: how to use same activity for different listviews?

2011-05-06 Thread Rutton
You can also put one Layout (Linear or Relative) on your main screen that fills the screen and use something like layout.removeLayout (currentlistview) layout.addLayout ( newlistview) to change the listview. Or, you can use one Listview and plugin different Adapters. I have used both for

[android-developers] Re: Which Reference System is used by the Google Maps Api

2011-05-06 Thread Maps.Huge.Info
You can safely use NAD83 (4269) or WGS84 (4326) as these two vary by very little. In the JavaScript Google Map API, the projection is called World Mercator which is the same I believe as the Android version. -John Coryat -- You received this message because you are subscribed to the Google

Re: [android-developers] Can we run adb commands through android applications?

2011-05-06 Thread Francisco Dalla Rosa soares
Can we know what would be the purpose of doing that? Maybe there's a better way of doing what you want. 2011/5/6 manoj manojkumar.m...@gmail.com Hi All, can we write an android application which runs adb commands like adb logcat? I mean, in an activity, I want to execute the adb logcat. Is

[android-developers] How to call Activity from a class derived from Dialog super class

2011-05-06 Thread ABS
Hi Everybody, I am new to android, working on one application, in that application i used custom dialog class derived from Dialog class. i have to call one activity with button event but intent is not allowed there bcz it is not extended from activity class

[android-developers] emulator again

2011-05-06 Thread Knutsford Software
Is there anyway that the contents left hand side of the eclipse emulator be made smaller? When you click on the oval button on the right to get the keyboard on the left the keybpad that appears is too wide and you can't see the bottom part. Thanks -- You received this message because you are

[android-developers] Re: Can we run adb commands through android applications?

2011-05-06 Thread Mika
Process process = Runtime.getRuntime().exec(logcat); InputStream is = process.getInputStream(); On May 6, 8:50 am, manoj manojkumar.m...@gmail.com wrote: Hi All, can we write an android application which runs adb commands like adb logcat? I mean, in an activity, I want to execute the adb

Re: [android-developers] Re: 回覆:Hello, Android troubles

2011-05-06 Thread Francisco Dalla Rosa soares
Is it my impression or you're trying to write that application as a normal java app instead of starting an Android Project? 2011/5/6 exax evan.yeu...@gmail.com I am developing in eclipse. Do you mean the class path in the environment variables. I added where the sdk was in the eclipse program

[android-developers] Re: Replay monkey execution

2011-05-06 Thread lbendlin
You are experiencing different crashes because you have fixed the bugs causing the other ones. Right? -- 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 unsubscribe

[android-developers] How to know current(last) transaction with PURCHASE_STATE_CHANGED as it gives details with more than one billing transactions

2011-05-06 Thread muhammad mahmood
Hi The JSON string that is returned with the PURCHASE_STATE_CHANGED intent provides my application with the details of one or more billing transactions. Why it does not give details of single transaction. How i know which is the current transaction. Is it possible to get only one transaction

[android-developers] Gallary does not show the gallary contents from sdcard on Gingerbread

2011-05-06 Thread amit kumar
Hi All, Gallary does not show the gallary contents from sdcard. I am using the Gingerbread(Android 2.3). I have fired the following commands:- 1) busybox mount -t vfat /dev/block/mmcblk0p1 /sdcard 2) setprop EXTERNAL_STORAGE_STATE mounted 3) am broadcast -a

Re: [android-developers] emulator again

2011-05-06 Thread Kostya Vasilyev
When you launch the emulator, there is a checkbox labeled Scale display to real size. If you enable that, you can specify a scaling factor based on dpi (dots per inch). A typical computer monitor is 96dpi, so base whatever you enter based on that. -- Kostya 06.05.2011 15:26, Knutsford

Re: [android-developers] How to know current(last) transaction with PURCHASE_STATE_CHANGED as it gives details with more than one billing transactions

2011-05-06 Thread Kostya Vasilyev
I don't think there is really a concept of the current transaction with in-app billing. The app / market interaction model is two asynchronous event queues flowing in two opposite directions. The purchase time is available, in the list you posted below, so you could do your own filtering.

[android-developers] Re: Odp: DB4O Native query time issue

2011-05-06 Thread imran ali
Hi Tomasz, i tried with index on dishTypeId, also follow this link http://developer.db4o.com/Documentation/Reference/db4o-7.12/java/reference/html/reference/tuning/native_query_optimization/optimization_at_query_execution_time.html but did not get, so finally i moved for SODA query, that give me

[android-developers] help, error: The application myapp has stopped unexpectedly. please try again

2011-05-06 Thread redmapleleaf
Hi all, I have an application that received gmail broadcast messages. I registered the broadcast receiver in the android manifest file. My app is able to receive the gmail well. However when the user press the button to quit the app (at which point i call system.exit(0) ) then if an email is sent

Re: [android-developers] emulator again

2011-05-06 Thread Knutsford Software
- Original Message - From: Kostya Vasilyev To: android-developers@googlegroups.com Sent: Friday, May 06, 2011 1:09 PM Subject: Re: [android-developers] emulator again When you launch the emulator, there is a checkbox labeled Scale display to real size. If you enable that, you can

[android-developers] eclipse locale setting

2011-05-06 Thread Knutsford Software
I am trying to do this http://developer.android.com/resources/tutorials/localization/index.html How do I change the locale setting fro the emulator? I can't find the setting Thanks -- You received this message because you are subscribed to the Google Groups Android Developers group. To

Re: [android-developers] eclipse locale setting

2011-05-06 Thread Giorgio Torres
You do that inside the emulator. The emulator is a conventional android cellphone. You can go to the menu grid, and then select Custom Locale. On Fri, May 6, 2011 at 10:14 AM, Knutsford Software i...@knutsford-software.co.uk wrote: I am trying to do this

Re: [android-developers] eclipse locale setting

2011-05-06 Thread Knutsford Software
- Original Message - From: Giorgio Torres To: android-developers@googlegroups.com Sent: Friday, May 06, 2011 2:27 PM Subject: Re: [android-developers] eclipse locale setting You do that inside the emulator. The emulator is a conventional android cellphone. You can go to the menu

Re: [android-developers] help in android call logs

2011-05-06 Thread gaurav gupta
hi Ashutosh. try this , it will help u :) http://www.mobisoftinfotech.com/blog/android/androidcalllogdeletion/ On Fri, May 6, 2011 at 9:14 AM, mayank k varshney mayank.be@gmail.comwrote: Import log and use Log.i(,); etc for debug and check on LogCat console. any other issue let me know

[android-developers] Re: Question about Android 2.2/2.3 and Hardware accelerated graphics

2011-05-06 Thread Lance Nanek
Does Android 2.2/2.3 use hardware accelerated graphics primitives for different view operations (draw, animations etc)? The official blog post on support for this in 3.0 mentions hardware acceleration does get used for windows composition in earlier versions, at least:

[android-developers] Process Observing

2011-05-06 Thread Neo Apostol
Hi there, How can i found out the state of the system processes that are of the sphere of my interests? For instance , when they change the state from Running to Foreground? Thank YOU. -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Re: Event based communication between two apps.

2011-05-06 Thread Jacob
Thanks. I think forums may not be the right choice for this particular question. I think I can figure this out by myself methodically. Like Mr.Hackborn said this particular concept is vague in Android platform. -Jacob On May 5, 11:44 am, Dianne Hackborn hack...@android.com wrote: The normal

[android-developers] deleting old apps

2011-05-06 Thread Knutsford Software
How do you delete old apps from the eclipse emulator? Thanks -- 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 unsubscribe from this group, send email to

[android-developers] Deleting Contact leaves (Unknown) entry in Contacts app

2011-05-06 Thread Simon MacDonald
Hi all, I'm having a problem trying to delete a contact from my Android device. When I delete the contact by using the following code: ArrayListContentProviderOperation ops = newArrayListContentProviderOperation(); ops.add(ContentProviderOperation.newDelete(ContactsContract.Data.

Re: [android-developers] deleting old apps

2011-05-06 Thread Justin Anderson
Either wipe all user data on the next launch, or uninstall them just like you would any other app... And it is not the Eclipse Emulator... It is an Android Emulator. :-) Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Fri, May 6, 2011 at 8:38 AM,

[android-developers] Contacts App

2011-05-06 Thread New Developer
Hi could someone explain How the Contact app creates a scroll bar that displays the Alphabet as you go down ? and group the contacts by first letter Thanks -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

Re: [android-developers] help, error: The application myapp has stopped unexpectedly. please try again

2011-05-06 Thread Justin Anderson
Why are you calling system.exit(0)? I can't think of a single case in Android where you would want to do that (Doesn't mean there isn't a case... I've just never come across the need). What does your logcat output say in regards to the error? Thanks, Justin Anderson MagouyaWare Developer

Re: [android-developers] deleting old apps

2011-05-06 Thread Knutsford Software
- Original Message - From: Justin Anderson To: android-developers@googlegroups.com Sent: Friday, May 06, 2011 4:02 PM Subject: Re: [android-developers] deleting old apps Either wipe all user data on the next launch, or uninstall them just like you would any other app... And it is

Re: [android-developers] How to call Activity from a class derived from Dialog super class

2011-05-06 Thread Justin Anderson
Yes you can, but you need to have a Context object and you should set the FLAG_ACTIVITY_NEW_TASK option... But you should read up on that flag because it may not behave as you would expect. Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Fri, May 6,

[android-developers] Re: Google Maps API Key not working? Only Grid!

2011-05-06 Thread wfilla
I have both the debug key and production keys. The debug works fine, but when I change the key to the production and export my app, I too get nothing but the grid. Anyone have any ideas why this would happen? On Apr 7, 1:05 am, Stephan Wiesner testexpe...@googlemail.com wrote: You need to have

Re: [android-developers] deleting old apps

2011-05-06 Thread Justin Anderson
On Android 2.x: - Menu-Settings-Manage Applications - Click on the Application - You will be brought to a page with an Uninstall button Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Fri, May 6, 2011 at 9:07 AM, Knutsford Software

Re: [android-developers] What exactly happens during an upgrade?

2011-05-06 Thread Robert Macaulay
The problem is the upgrade process seems like it has some race conditions in it. Mostly things around resources being non-existent, even though they are definitely there in the drawable directory. Even more disconcerting is a stack trace that is in the old code, but is very definitely running a

Re: [android-developers] deleting old apps

2011-05-06 Thread Knutsford Software
- Original Message - From: Justin Anderson To: android-developers@googlegroups.com Sent: Friday, May 06, 2011 4:02 PM Subject: Re: [android-developers] deleting old apps Either wipe all user data on the next launch, or uninstall them just like you would any other app... And it is

[android-developers] Re: Android app crashes when invoking getSystemService(LOCATION_SERVICE)

2011-05-06 Thread Prayag Pathak
Thanks guys! I could figure that out! It was only with the help of you people, that I could get a clear understanding about getting coordinates from GPS! Thanks again! God Bless! On May 5, 4:10 pm, Tommy droi...@gmail.com wrote: You are getting the null pointer b/c getLastKnownLocation has

[android-developers] Re: Question about Android 2.2/2.3 and Hardware accelerated graphics

2011-05-06 Thread Videoguy
I looked at Romain's post. That gave me the impression that old releases use software based 2d library calls (Skia calls). The old posts in the android-porting newsgroups talk about libhgl.so to integrate with OpenGL backend. If 2.2/2.3 uses software based 2d/3d backend, what is GL backend used

Re: [android-developers] Downloading other applications from a stub

2011-05-06 Thread Justin Anderson
* Is this possible?* Yes, but you can't do it silently... how? Use PackageManager to determine if a package exists. If it does not exist, display a dialog telling the user they need to download an additional app from the market. Provide a button that launches the Market with the app URL so

Re: [android-developers] Cannot get sound to play from notification

2011-05-06 Thread Justin Anderson
Have you tried anything other than default sound? Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Wed, May 4, 2011 at 6:31 PM, tedpottel tedpot...@gmail.com wrote: Hi, I'm trying to get a notification to make a asound, asny sound. The notification

Re: [android-developers] adding style in xml breaks onClick events.

2011-05-06 Thread Justin Anderson
* style=?listItem* * * This line seems weird to me... If you take a look at this link I think you will find the problem: http://developer.android.com/guide/topics/ui/themes.html Shouldn't it be: style=@style/list_item_bl? *** * Thanks, Justin Anderson MagouyaWare Developer

[android-developers] HTC Thunderbolt camera orientation

2011-05-06 Thread paladin
Have a camera activity that works for pretty much any other phone, in portrait mode, using this code: Camera.Parameters parameters = camera.getParameters(); parameters.set(orientation, portrait); parameters.set(rotation, 90); camera.setParameters(parameters);

[android-developers] Re: Contacts App

2011-05-06 Thread Jake Colman
ND == New Developer secur...@isscp.com writes: ND Hi ND could someone explain How the Contact app creates a scroll bar ND that displays the Alphabet as you go down ? ND and group the contacts by first letter For this type of question I have found it very helpful to browse the

Re: [android-developers] Re: Google Maps API Key not working? Only Grid!

2011-05-06 Thread Mark Murphy
You need a separate Maps API key for the production signing key. On Fri, May 6, 2011 at 11:09 AM, wfilla wfi...@stchlibrary.org wrote: I have both the debug key and production keys. The debug works fine, but when I change the key to the production and export my app, I too get nothing but the

[android-developers] Handling long process after clicking menu item from the menu

2011-05-06 Thread venkata raidu
Hi all, Upon the selection of a menu item from the menu, I wrote some code to open a dialog using onCreateDialog of the activity. Each time a dialog is opened, new data downloaded has to be shown on dialog, which is pausing the application for 2 to 3 seconds. And the menu item becomes

[android-developers] Building app with ant, java resource files (not android) are not added...

2011-05-06 Thread Peterdk
Hi, For my app I also use a java eclipse project that uses a embedded .xml file as resource. It loads them using: Library.class.getResourceAsStream(file.xml); This library works ok, when the app is compiled with eclipse. However, when I compile using ant (debug, so no proguard), it doesn't get

Re: [android-developers] eclipse locale setting

2011-05-06 Thread Giorgio Torres
Ok, maybe you named wrongly the res packages in your project. You have to follow the tutorial on each detail. If I remember well the packages with the string.xml must have the name fr-rFR. This mean your string resource is set for french language at France. If you want a generic string resource of

[android-developers] Re: Button in a ListView cell

2011-05-06 Thread Eric
I am going to surmise it is safe to assume there is no way to achieve this in Android, due to lack of responses and being unable to find anyone else who has been able to do it? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

Re: [android-developers] Re: Button in a ListView cell

2011-05-06 Thread B Lyon
Did you play with descendantFocusibility at all? On Fri, May 6, 2011 at 1:24 PM, B Lyon bradfl...@gmail.com wrote: hey well, I'm really curious what is going on.  I've got some extra buttons/imagebuttons and a text view inserted into the row and they don't interfere with each other, but that

[android-developers] Is there a way we can send sensor events just like key events?

2011-05-06 Thread Belani
We can send key events using InputConnection.sendKeyEvent method. I want to send sensor events from within my application on click of a button. Is there any way I can do this? Thanks Belani -- You received this message because you are subscribed to the Google Groups Android Developers group.

[android-developers] Re: help, error: The application myapp has stopped unexpectedly. please try again

2011-05-06 Thread redmapleleaf
Hi Justin, I took this from an example app. What do you suggest I do instead when user wants to quit the app? And why would system.exit(0) has anything to do with the error message? Thanks, On May 6, 11:04 am, Justin Anderson magouyaw...@gmail.com wrote: Why are you calling system.exit(0)?  I

Re: [android-developers] Re: help, error: The application myapp has stopped unexpectedly. please try again

2011-05-06 Thread Justin Anderson
* I took this from an example app.* What example app? * What do you suggest I do instead when user wants to quit the app?* Depends on what your app is... since you haven't provided many details I can't really give a good example. An activity, for example, provides a finish() method that you call

[android-developers] Re: Button in a ListView cell

2011-05-06 Thread Eric
On May 6, 1:38 pm, B Lyon bradfl...@gmail.com wrote: Did you play with descendantFocusibility at all? Not yet. I would like to avoid an time-consuming and arbitrary number of tag permutation changes if I can find the proper solution up- front. descendantFocusibility does seem to look

Re: [android-developers] Re: Button in a ListView cell

2011-05-06 Thread B Lyon
I take it you looked through this http://developer.android.com/resources/articles/touch-mode.html (which was new to me) On Fri, May 6, 2011 at 1:59 PM, Eric e...@alum.mit.edu wrote: On May 6, 1:38 pm, B Lyon bradfl...@gmail.com wrote: Did you play with descendantFocusibility at all? Not

Re: [android-developers] possible to use Bitmap as notification icon?

2011-05-06 Thread TreKing
On Thu, May 5, 2011 at 10:22 PM, Nikolay Elenkov nikolay.elen...@gmail.comwrote: Why: I want to add an overlay to the icon that shows a number That's what this is for: http://developer.android.com/reference/android/app/Notification.html#number

[android-developers] Long process before a dialog is opened

2011-05-06 Thread venkata raidu
Problem: I need to display a dialog upon the click of a menu item. The information to be displayed on the dialog will be downloaded each time and is a lengthy process. How do you solve this problem, so that a progress bar is displayed during this process. Solution I tried: I used

[android-developers] java.io.FileNotFoundException: (Device or resource busy)

2011-05-06 Thread faah
On the 3.0 honeycomb, I am getting this error when trying to access a file. It does not happen all the time. What causes is that I browse around the market a bit and then i come back to my app. It tries to access a file, and i get this error: Exception caught in

Re: [android-developers] Long process before a dialog is opened

2011-05-06 Thread Satya Komatineni
Venkata, All you probably need is an activity. May be just the activity that you are on when the menu is clicked. Eitherway on the menu click start an asynctask and you can show the progress bar while the asynctask is in progress. At the end of that asynctask you can update the view in your

[android-developers] javamail-android error

2011-05-06 Thread Ratnesh Kumar Gupta
Well i had studied javamail and trying in android but while i am running the code i m getting error ... 05-06 10:07:45.160: ERROR/Mail app(602): com.sun.mail.smtp.SMTPSendFailedException: 530 5.7.0 Must issue a STARTTLS command first. q5sm1883105pbp.65 05-06 10:07:45.160: ERROR/Mail app(602):

[android-developers] Re: GLSurfaceView + Android 2.3.x = EGL_BAD_ALLOC

2011-05-06 Thread Fei
Hi, Any update about this issue? I run almost all device available for me on android 2.3.x, all have this problem. On Apr 13, 8:50 pm, Mario Zechner badlogicga...@gmail.com wrote: Forgot to add: the problem does not appear on Android 2.3 (tested on Hero 1.5, Droid 2.1.1, HTC Desire HD

[android-developers] android starter

2011-05-06 Thread zaid
can some body please guide me to some very good links for the basics of android development..i am good at java.new to android ..thanx alot -- 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] onSharedPreferenceChanged is _not_ running on Main Thread! Why?

2011-05-06 Thread laborg
Hi! The API (http://developer.android.com/reference/android/content/ SharedPreferences.OnSharedPreferenceChangeListener.html) states that onSharedPreferenceChanged is run on your main thread. With this believe I implemented a activity which is registered as a SharedPreferenceListener within

[android-developers] NFC Card Emulation, How to?

2011-05-06 Thread benza
Dear developers, I'm wondering if there is a way to develop the NFC card emulator with Android 3.0. Unfortunaly it seems that is not possibile. Is there another way to do that? Maybe using other way insted SDK? In the future SDK for card emulation will be avaible? thanks, benza -- You

[android-developers] Display sql data

2011-05-06 Thread alex kimani
Hi guys, I am still a newbie, sorry if this is a 'blonde question'. I have a problem of displaying data on my textview and list view from my sql db. I can manage to check the records on the sql through cmd and create the db and tables through my app. but am unable to display the data on text

Re: [android-developers] noclassdeffounderror

2011-05-06 Thread ragupathi ragupathi
The error class is myitemoverlay. this class comes error for me On Fri, May 6, 2011 at 5:59 AM, TreKing treking...@gmail.com wrote: On Thu, May 5, 2011 at 6:57 AM, ragupathi ragupathi ragumm...@gmail.comwrote: hi im developing google application it focus some problem like

[android-developers] Backporting from gingerbread to froyo-language support

2011-05-06 Thread NicuLiviu
Hi, I'm trying to add more language support from gingerbread to froyo. I've tried to take SDK from gingerbread and put it intro froyo and compile it, but this didn't work. Anyoane has some idea on how this could be done or some basic principles about backporting? Thanks. -- You received this

[android-developers] Android - Socket Client side

2011-05-06 Thread Yondaime
I am able to connect and send data to the server, but i cant read from server... this is what i am using : BufferedReader inFromServer = new BufferedReader(new InputStreamReader(sock.getInputStream())); String message = inFromServer.readLine(); // it is not working any alternate method ? please

[android-developers] how to unit test drag n drop - honeycomb

2011-05-06 Thread jjoe64
hello, since honeycomb (api level 11) there is a the feature dragging and dropping. I wrote a very small and simple app to get involed with this new feature. Now I'd like to unit test this. I tried two ways to test it: 1. Robotium: solo.drag(...) 2. TouchUtils.dragViewBy(this, img, Gravity.TOP |

[android-developers] [ask] android httpclient login into web and request data

2011-05-06 Thread Chung
hello android developers, can you help me how to create script to request data from website using httpclient with form login access. the login form using httppost to store the cookies about information session login, and than request data using httpget with cookies information session login.

[android-developers] [ask] android httpclient login into web and request data

2011-05-06 Thread Agung Nugroho
hello android developers, can you help me how to create script to request data from website using httpclient with form login access. the login form using httppost to store the cookies about information session login, and than request data using httpget with cookies information session

[android-developers] Doubt--- Example: Record audio and play the recorded audio ---Unable run this example code

2011-05-06 Thread sujith
Hi, I am new to this group. First of all I try create develop Record Audio and play and recorded audio which is example code give in this link http://developer.android.com/guide/topics/media/ index.html using android emulator. I build this successfully but while click on the record

[android-developers] How to use ViewDebug static methods?

2011-05-06 Thread Idolon
I tried to use *ViewDebug.startHierarchyTracing* method but it just do nothing since it checks *ViewDebug.TRACE_HIERARCHY* and returns immediately if it is *false*. Actually this is expected behavior according to JavaDoc: This method will return immediately if TRACE_HIERARCHY is false. The

[android-developers] Suspended my dev account without any explanation, Why?

2011-05-06 Thread Angry Developer
Hi! Yesterday Google suspended my account without any explanation. Only send the standart message with policies. On the next day I've recevied message with: ///The review of your appeal is complete. We will not be restoring your account at this time. We are unable to provide further details

[android-developers] which jar file can be used to play an audio file in android

2011-05-06 Thread Sivasankar K
When I was searching through google I found a java program created in netbeans to calculate the bpm of a song. It was working with a lot of JAR files. I used the same code for my android app and it showed lot of errors due to the missing of only one JAR file. I added the JLayer1.0.1 jar file and

[android-developers] Odp: DB4O Native query time issue

2011-05-06 Thread Tomasz Adamski
I think that creating an index on dishTypeId will drastically reduce query time. In db4o 8.0 and above it will probably look something like this: (while creating configuration for ObjectContainer) EmbeddedConfiguration embeddedConfiguration = Db4oEmbedded.newConfiguration();

[android-developers] which jar file can be used to play an audio file in android

2011-05-06 Thread Sivasankar K
When I was searching through google I found a java program created in netbeans to calculate the bpm of a song. It was working with a lot of JAR files. I used the same code for my android app and it showed lot of errors due to the missing of only one JAR file. I added the JLayer1.0.1 jar file and

[android-developers] Re: Is it impossible to move and merge text on an image

2011-05-06 Thread Hans-Erik
hello TreKing. Actually i need help on all of it. I was posting on : http://stackoverflow.com/questions/5900463/android-how-to-merge-and-move-text-around-on-image, and got an answer and will try that now. If you have any thoughts about that answer please advice On 6 Maj, 02:42, TreKing

[android-developers] How to set the size and position of an image?

2011-05-06 Thread Tom
I am trying to set the size and position of an image (image2) on the screen so that it is in the same position and size relative to the background image (image1) it is on no matter the screen size. To do this, I try to alter the layout parameters of image2 in my `onCreate` method of my `Activity`

[android-developers] TextView Html.ImageGetter Widget

2011-05-06 Thread Marcel Atnyashev
Hello. I'm developing a widget, that will show html with images in a TextView. I've found a couple posts on the internet: http://stackoverflow.com/questions/3087121/displaying-images-on-android-widgets-using-html-textview,

[android-developers] Re: 1380 Paid Applications in One Free Torrent then How to SELL it?

2011-05-06 Thread Dancovich
Well, if you are sending the APK to them to test then you trust they know how to test applications and probably have experience in installing APKs. Try asking someone who you woudn't give your app to test, someone you think wouldn't be a good tester. Also, maybe making the application display

Re: [android-developers] Re: will the android emulator support opengles 2.0 in the future?

2011-05-06 Thread Will
Does anyone have an update on if this is planned and when it might be delivered? -- 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 unsubscribe from this group, send

[android-developers] onBackPressed to hide Not destroy activity

2011-05-06 Thread Cel
i know how to cancel back keypress, so that the activity / main window stays visible: public void onBackPressed() { return; } my aim is to hide the activity, however, without finishing it, how do you do that in the onBackPressed event? i.e. I would like to get as far as

[android-developers] Help needed in.android tabs

2011-05-06 Thread आशुतोष हिन्दुस्तानी
Hi all, Please share the xml code for adding multiple edittexts in a single tab . Thanks alot -- 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 unsubscribe from this

[android-developers] Re: Is it impossible to move and merge text on an image

2011-05-06 Thread Hans-Erik
i have not startet doing this so any ide is helpfull was thinking i could write text on the bitmap and then track x/y when using finger to move the text to new x/y you have better ide? On 6 Maj, 02:42, TreKing treking...@gmail.com wrote: On Thu, May 5, 2011 at 1:09 PM, Hans-Erik

[android-developers] Android NDK with templateclass T

2011-05-06 Thread Grégoire Badoual
Hi, I'm using the NDK Android, modified with crystax-r5b, with the STL (stlport_static) I'm trying to use the template, but i'm facing with some errors that I don't understand. So I have write a .cpp file with a easy use of template #include Vector2.h /* functions for vectors */

[android-developers] Debug application framework with Eclipse

2011-05-06 Thread Jeje
Hi, I would like to know the tools which enables to debug the application framework layer on a target. Indeed, I would like to be able to follow each step when an application is launched for instance (not using the logCat but using java code, with the possibility to put breakpoint ...) and I

[android-developers] Re: Is there a WebDav client for Android

2011-05-06 Thread Kusse
Hi, i 'm looking for a way to browse a webdav repository. How did you make jackrabbit-webdav work for android? Thanks Javier On Apr 29, 7:06 am, ashimita ashim...@gmail.com wrote: Ahh! finally made it happen. The new client jar talks toWebDav(read/ write files) from Android. :) On Apr 27,

Re: [android-developers] help in android call logs

2011-05-06 Thread आशुतोष हिन्दुस्तानी
THANKS BRO 2011/5/6 gaurav gupta gaurav.gupta...@gmail.com hi Ashutosh. try this , it will help u :) http://www.mobisoftinfotech.com/blog/android/androidcalllogdeletion/ On Fri, May 6, 2011 at 9:14 AM, mayank k varshney mayank.be@gmail.com wrote: Import log and use Log.i(,); etc

[android-developers] mysql connection using Ksoap2 API

2011-05-06 Thread Expressions Unlimitted
I am supposed to retrieve data from mysql database at server from andoid mobile. I guess ksoap2 api would be suitable for it. I tried alot, but found the enhanced copies of API's. Please reffer me to the proper link of ksoap2 API, and also how to retrieve data. -- You received this message

[android-developers] Android Display service restart

2011-05-06 Thread Shrey
Hi, Is there any way I can restart the display service on my android without rebooting? I am changing a theme by replacing apk files and want to see the change without having to restart the phone. Possible? -- You received this message because you are subscribed to the Google Groups Android

  1   2   >