[android-developers] Re: Querying Content Providers

2010-10-25 Thread Doug
Hint: Look at the javadoc for Cursor.getColumnsIndex. Caveat: You still have to read the docs. :-( On Oct 24, 3:18 am, callintegra...@web.de wrote: well, with an awnser like that any disucssion group is useless. Maybe there is someone out there who has a hint? -- You received this message

[android-developers] XAuth Library for Android

2010-10-25 Thread Kristiono Setyadi
Hi all, is there any stable xauth library for Android out there? I'm digging down the net but couldn't find one universal library. Instead, I've got the Twitter library. Anyone can help me on this? Thanks! -- You received this message because you are subscribed to the Google Groups Android

[android-developers] getLocationInWindow API of View class bug?

2010-10-25 Thread eli
Hi, I think there may be a bug in getLocationInWindow API, should the calculation below take the padding of view into consideration. //extract from View.java while (viewParent instanceof View) { final View view = (View)viewParent; location[0] += view.mLeft -

[android-developers] Facebook challenge response

2010-10-25 Thread Muhammad Ali
Hi All, I am able to parse the facebook challenge but I am unable to create the challenge response. I have a class which create the response for the challenge which has the following function: public String getResponse(String algorithm, String clientNonceCount, String clientNonce, String

Re: [android-developers] android.os.DeadObjectException

2010-10-25 Thread 苗忠良
I meet too, who can help us? 2009/12/18 hap 497 hap...@gmail.com Hi, I am seeing the following android.os.DeadObjectException exception in 'adb logcat'. Can you please tell me how can I determine that it is caused by my app? And how can i trouble-shoot within my app? Thank you. D/AKMD

[android-developers] how to add button to do this line of codes

2010-10-25 Thread zenous
public void onActivityResult(int requestCode, int resultCode, Intent intent) { IntentResult scanResult = IntentIntegrator.parseActivityResult(requestCode, resultCode, intent); if (scanResult != null) { // success } // fail } -- You received this message because you are

Re: [android-developers] android.os.DeadObjectException

2010-10-25 Thread Dianne Hackborn
As per: W/InputMethodManager( 2368): IME died: null dropping: KeyEvent{action=0 code=4 repeat=0 meta=0 scancode=158 mFlags=8} The current IME's process has gone away, and the app is reporting an error when it tries to hand a key event to it to process. On Thu, Dec 17, 2009 at 3:38 PM, hap 497

[android-developers] Re: how to add button to do this line of codes

2010-10-25 Thread grace
hope this is what you are looking for b= (Button) findViewById(R.id.Button01); b.setOnClickListener(new OnClickListener(){ @Override public void onClick(View v){ IntentIntegrator.initiateScan(Axzing.this/*context*/);

[android-developers] Animation startOffset failing, 2.1 bug?

2010-10-25 Thread Cardy
Hi, I've taken some animation xml straight from the android docs, and as far as I can see, doesn't work on either my 2.1 update 1 emulator or my 2.1 update 1 Galaxy S device. Specifically, I'm trying to create an animation to pulsate a view (i.e. make it smaller then larger in one animation)

[android-developers] Re: Error Parsing JSON data

2010-10-25 Thread Capt Spaghetti
RESOLVED ISSUE. It turns out my variable jnow was not initialized correctly. Thanks for all those who helped rattle my grey matter. = On Oct 25, 12:51 am, Capt Spaghetti gene_august...@msn.com wrote: I appreciate your assitance. I removed the

[android-developers] Re: android.os.DeadObjectException

2010-10-25 Thread Guian
thx Dianne for the answer. I'm meeting the same problem and I still wonder how can we prevent the current IME's process from going away... ( Did I say something that upset it ? ) Any clue on this ? On 25 oct, 10:13, Dianne Hackborn hack...@android.com wrote: As per: W/InputMethodManager(

[android-developers] How to Obfuscate android application using Proguard

2010-10-25 Thread monty
Hi All Could anyone give me a detail procedure of how to obfuscate android application using ProGuard.I tried the procedure in http:// android-developers.blogspot.com/2010/09/proguard-android-and-licensing- server.html but it did not work.There is no error but when i try n check if code is

[android-developers] Re: Memory Leaks

2010-10-25 Thread Lisa
Hi John (⌒o⌒)/, I resolve the problem. this is link is the result: http://groups.google.com/group/android-group-japan/browse_thread/thread/fa40fe4d250541f5/b75d9d97a479084f#b75d9d97a479084f sorry this is japanes, but The Penultimate Post source is result. have fun.\(⌒∇⌒ -- You received this

[android-developers] Re: ListView and Memory Leaks

2010-10-25 Thread Lisa
Hi John (⌒o⌒)/, this is link is the help you maybe: http://groups.google.com/group/android-group-japan/browse_thread/thread/fa40fe4d250541f5/b75d9d97a479084f#b75d9d97a479084f sorry this is japanes, but The Penultimate Post source is result. have fun.\(⌒∇⌒ -- You received this message because

[android-developers] Re: android.os.DeadObjectException

2010-10-25 Thread Guian
It seems like I've got a low memory issue in my App... Can it be the reason why my IME process run away ? On 25 oct, 10:37, Guian guiandou...@gmail.com wrote: thx Dianne for the answer. I'm meeting the same problem and I still wonder how can we prevent the current IME's process from going

[android-developers] Re: applying a theme to an appwidget

2010-10-25 Thread Alex
I am working on the same thing. AppWidget layout can only be updated at runtime through a RemoteViews object. The RemoteViews object only supports limited changes to layout. It seems that the background property is one thing that cannot be updated through RemoteViews. My solution to this has

[android-developers] Problem running android camera DEMO

2010-10-25 Thread ashwani
Hi All, I am not able to launch camera application on froyo platform. Following is the logcat message: D/AndroidRuntime( 1967): AndroidRuntime START D/AndroidRuntime( 1967): CheckJNI is ON D/AndroidRuntime( 1967): --- registering native functions --- I/ActivityManager( 1669): Starting

[android-developers] Mount as USB drive

2010-10-25 Thread perumal316
Hi All, A general question. Is there any difference in the way the USB drive is mounted in Android as compared to other mobile operating systems? Regards, Perumal -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] setWallpaper(Bitmap bitmap) just sets default background?

2010-10-25 Thread Kman91
Hey I've got a bug report for an app of mine where the setWallpaper() call does not seem to work. Usually when an exception occurs in the call I catch it and show a toast saying an error occurred while setting wallpaper but for this one person (HTC Desire running 2.1) there is no exception and

[android-developers] [EXCEPTION IN SYSTEM PROCESS]

2010-10-25 Thread GPU
Hi , I am facing the android crash in booting time .From the log crash happening from the SyncStorageEngine.java -writeAccountInfo Locked.(when updating account from google apps accounts.db to /data/ sync/accounts.xml) . I am not able to find why this happening only some times. in

[android-developers] alternative markets offers

2010-10-25 Thread MarkA
I was wondering if anyone else got an email with offer of app distribution and collaboration from a company called Logia. Has anyone got any experience in dealing with them or has published apps thorugh them? Searching on the internet, they seem to be regular company dealing with big names mobile

[android-developers] org.apache.http.auth Problem

2010-10-25 Thread filiz_gokce
0 down vote favorite Hi, I used org.apache.http.auth and develop demo code samples like this: DefaultHttpClient httpclient = new DefaultHttpClient(); httpclient.getCredentialsProvider().setCredentials( new AuthScope(www.yemeksepeti.com, 80), new

[android-developers] C2DM Push Message error on device

2010-10-25 Thread dominik.helleb...@googlemail.com
Hi, I'm working on push-enabled android application and I'm already able to send messages to the C2DM server, which accepts the message for the delivery to the device (which is a nexus one). Shortly after that I get the following stack trace shown below on the device. My app never get's the push

[android-developers] Re: How to manual aggregate contacts?

2010-10-25 Thread Goran Krstevski
Thanks, now it works with this code: ... ArrayListContentProviderOperation ops = new ArrayListContentProviderOperation(); ops.add(ContentProviderOperation.newUpdate(ContactsContract.AggregationExce ptions.CONTENT_URI) .withValue(AggregationExceptions.TYPE,

[android-developers] Re: Animation startOffset failing, 2.1 bug?

2010-10-25 Thread Cardy
Anyone? No-one can relate to this, or even try to see if they get the same results? Please! Andy. On Oct 25, 9:23 am, Cardy andy.ca...@gmail.com wrote: Hi, I've taken some animation xml straight from the android docs, and as far as I can see, doesn't work on either my 2.1 update 1

[android-developers] How to handle Home Button

2010-10-25 Thread RKJ (Android developer)
Hi All, I need to handle home button, redirection of home button on customize way.. wt to do. -- 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] how to handle back buttton

2010-10-25 Thread RKJ (Android developer)
Hi All, I want to handle the back button in customize way. What to do. -- 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] How to load activity before loading all images?

2010-10-25 Thread rokson
Hi Friends, I have been struggling with this problem for many days. please help me.. In my android application i am trying to download images from remote server dynamically ( no of images dynamically come ). for downloading all images it is taking 30 to 40 seconds mean time user has to wait to

[android-developers] Re: LVL returns LICENSED with anonymous accounts...

2010-10-25 Thread gcstang
You can have the one your testing use the same android:versionCode as one you already uploaded and it will allow you to test, without having to upload a newer version. This is what I did and it worked. On Oct 24, 11:21 am, swinefeaster swinefeas...@gmail.com wrote: I have to say the google

[android-developers] Re: How to load activity before loading all images?

2010-10-25 Thread AJ
Hi Kiran, The Activity gets loaded as soon as you start it. Probably you need to 1- Show some Toast/Dialog so that user can aware of the UI changes happening in the activity. OR 2- Don't make request to image from server as the activity gets started. Instead of that show some text and them make

[android-developers] Re: how to handle back buttton

2010-10-25 Thread AJ
Hi RKJ, Overload the function @Override public boolean onKeyDown(int keyCode, KeyEvent event) { if(event.KEYCODE_BACK == keyCode) { //Do what you want } return super.onKeyDown(keyCode, event);

[android-developers] Problem with OpenGL ES application,please help

2010-10-25 Thread gambiting
Hi there, I am currently trying to develop a game for android in OpenGL ESand I am testing it on my Nexus One. But I have run into some performance problems,and I would like to ask somebody about it,could you help? I currently have a very basic scene - background made of 25 tiles(256x256

[android-developers] Re: error code 5: database is locked

2010-10-25 Thread gcstang
ping, anyone that can answer this? On Oct 16, 10:58 am, gcstang gcst...@gmail.com wrote: Here is the stack: android.database.sqlite.SQLiteException:errorcode5:databaseislocked         at android.database.sqlite.SQLiteStatement.native_execute(Native Method)         at

[android-developers] Re: How to handle Home Button

2010-10-25 Thread AJ
Same as I told you in my previous post. Match the keycode with event.KEYCODE_HOME Thanks, AJ On Oct 25, 5:08 pm, RKJ (Android developer) rkjhaw1...@gmail.com wrote: Hi All, I need to handle home button, redirection of home button on customize way.. wt to do. -- You received this message

[android-developers] control for user file selection

2010-10-25 Thread Honest
hello, in my application i want that user can select file from sd card and phone memory. so can some one tell me is there any control available to display file open or file save dilog box. -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Re: error code 5: database is locked

2010-10-25 Thread AJ
Hi gcstang, Very basic but check the following:- 1- Is any other app using your DB? 2- Did you close the cursor every time when you opened it? Thanks, AJ On Oct 25, 5:41 pm, gcstang gcst...@gmail.com wrote: ping, anyone that can answer this? On Oct 16, 10:58 am, gcstang gcst...@gmail.com

[android-developers] Re: control for user file selection

2010-10-25 Thread AJ
There are no such controls available AFAIK. You need to use the FileBrowser. Thanks, AJ On Oct 25, 5:43 pm, Honest honestsucc...@gmail.com wrote: hello, in my application i want that user can select file from sd card and phone memory. so can some one tell me is there any control available

[android-developers] Re: Wrong latitude/longitude points received by Emulator with new version of Android SDK

2010-10-25 Thread Paul
@Mathias Lin- No, that is not the issue. Look, I'm telling you the latitude/longitude received in the Location object in onLocationChanged event, have different values than the latitude/ longitude that was sent from DDMS or from command line geo fix command. The values are close, but off in the

[android-developers] Permission Categories

2010-10-25 Thread Tez
Where can I find a listing indicating what level (normal, dangerous, signature, system) all the available permissions are? I have looked at the JavaDocs. There is no mention of the level there. E -- You received this message because you are subscribed to the Google Groups Android Developers

Re: [android-developers] How to load activity before loading all images?

2010-10-25 Thread TreKing
On Mon, Oct 25, 2010 at 7:17 AM, rokson kiranrepa...@gmail.com wrote: Is there anything to do it? AsyncTask - TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago transit tracking

Re: [android-developers] Re: How to handle Home Button

2010-10-25 Thread TreKing
On Mon, Oct 25, 2010 at 7:41 AM, AJ ajeet.invinci...@gmail.com wrote: Same as I told you in my previous post. Match the keycode with event.KEYCODE_HOME No - you can't handle the Home key. That's reserved by the system and not propagated to apps, AFAIK.

[android-developers] Finding a development phone - how is the LG Optimus GT540?

2010-10-25 Thread A Curious Developer
The LG Optimus GT540 is fairly cheaply now, at about $200. Does anyone have any experience with it, as a development phone? I understand it requires a special USB driver to use for development. Is the one google offers still $400? I don't seem to be able to find a price on that one, at least not

Re: [android-developers] Re: LVL returns LICENSED with anonymous accounts...

2010-10-25 Thread Mark Carter
This is what I do too - not great, but I haven't found a better way yet. On 25 October 2010 20:34, gcstang gcst...@gmail.com wrote: You can have the one your testing use the same android:versionCode as one you already uploaded and it will allow you to test, without having to upload a newer

[android-developers] Application Startup Time.

2010-10-25 Thread Suneel Dasari
Hi, I am working on a project which uses application start up time for refreshing the cache. if (cached_time_stamp app_start_up_time) then use the network to get the data other wise use the data from the cache. But not sure how exactly we can handle this situation if the application

[android-developers] Spinner: crash when selected

2010-10-25 Thread Khetzal
Hello, I don't understand why my spinner crash as soon i select it. My code: Spinner chooseCategorySpinner = (Spinner)findViewById(R.id.spinner); testArray = ArrayAdapter.createFromResource(this, R.array.planets, android.R.layout.simple_spinner_item);

Re: [android-developers] Application Startup Time.

2010-10-25 Thread Daniel Drozdzewski
On Mon, Oct 25, 2010 at 3:31 PM, Suneel Dasari sunil.das...@gmail.com wrote: Hi, I am working on a project which uses application start up time for refreshing the cache. if (cached_time_stamp app_start_up_time) then           use the network to get the data other wise use the data from the

[android-developers] Re: Application still Running After Exit

2010-10-25 Thread mort
On 25 Okt., 05:41, Frank Weiss fewe...@gmail.com wrote: I kind of agree, but I think I'll stick with what I said. I think the issue is that when developers see an app listed in what appears to be a list of running processes (like unix ps or Windows Task Manager), they tend to jump to the

[android-developers] Re: Why doesn't AlarmManager allow querying or browsing of alarms or pending intents?

2010-10-25 Thread Anil
Sorry, I don't think I am explaining this well. You said, It is not used for sending the intent, but it is part of the key that unique[ly] identifies a pending intent. Should we use the request code to retrieve the PendingIntent associated with the alarm we want to pick and update out of the

[android-developers] Re: Wrong latitude/longitude points received by Emulator with new version of Android SDK

2010-10-25 Thread cellurl
I have the same problem. It started about a month back. All lat/lon is off by 0.001 ish. Also new is that sometimes I see some lat=0.0, lon=0.0 showing up which goes away if I restart Emulator most of the time. I thought this was because my *.gpx file is wrong somehow. Perhaps someone could post a

Re: [android-developers] Application Startup Time.

2010-10-25 Thread Frank Weiss
I assume by application you mean the default activity. The solution depends on several factors, one being how long does the typical refresh take? Two most typical solutions are an AsyncTask started by onResume and displaying a progress bar or a service with an AsyncTask that updates the cach in

Re: [android-developers] Spinner: crash when selected

2010-10-25 Thread TreKing
On Mon, Oct 25, 2010 at 9:39 AM, Khetzal quetz...@gmail.com wrote: E/AndroidRuntime( 2680): android.view.WindowManager$BadTokenException: Unable to add window -- token null is not for an application This terribly-word error message usually arises when you use getApplicationContext() to show a

[android-developers] Gallery Cache

2010-10-25 Thread Andrew Whalen
Hi, I'm trying to add pictures to a folder and have that folder viewable in the Gallery app. I've been able to do so, but if I add or remove an image in the folder, it will not be updated in the Gallery unless I reset the device. I was wondering if there was a way to force the Gallery to update

Re: [android-developers] control for user file selection

2010-10-25 Thread Marcin Orlowski
On 25 October 2010 14:43, Honest honestsucc...@gmail.com wrote: hello, in my application i want that user can select file from sd card and phone memory. so can some one tell me is there any control available to display file open  or file save dilog box. There's none built in. Use Open

[android-developers] AppWidget update called three times on boot up

2010-10-25 Thread Mark Carter
I have two widget providers (in the same app). The first has three widgets on the homescreen. The second has one. When I reboot the device, I notice that each provider is triggered (with action android.appwidget.action.APPWIDGET_UPDATE) three times in very quick succession. The precise order is:

Re: [android-developers] Re: Why doesn't AlarmManager allow querying or browsing of alarms or pending intents?

2010-10-25 Thread Dianne Hackborn
In your two intents, nothing in the keys (app, type, intent filter, request code) are the same, so these are associated with the same pending intent. What happens when you retrieve the pending intent for the second depends on whether you pass the flag to replace/cancel the first. Either way, you

Re: [android-developers] Re: Application still Running After Exit

2010-10-25 Thread Dianne Hackborn
On Sun, Oct 24, 2010 at 9:20 PM, Bret Foreman bret.fore...@gmail.comwrote: Since most apps of even moderate complexity make liberal use of the preferences database and also SQLite, restarting the app isn't going to produces a known good state. A real factory reset is not going to happen

[android-developers] GridView with Filter and Sort capabaility

2010-10-25 Thread stanchat
Is it possible to have a grid view that is filterable and sortable? The GridView is a collcetion of a more complex view that is CheckBox and TextView with a picture background above the text. I have created a custom class that where I override getView. I can display and work the gridview just

[android-developers] Searchable dictionary results are not being shown in global search

2010-10-25 Thread Achie
I tried to implement the searchable dictionary and the words from dictionary are not being shown in global search. I copied every thing so that i am not changing anything in the project. I have also tried it with sample from version 1.6 and 2.2 sdk and both of them did not work. They are pulling

[android-developers] Highlight focus item on listview

2010-10-25 Thread Gabriel Huie
Hi i was wondering I know by now how to make a list appear on Android. but my new task is when i select the item on listview it just changes colors like semi gets highlighted then goes away as i guess the program has selected its object. what I wanted to know is there a way to keep the highlighted

[android-developers] Re: mediaplayer's onCompletionListener never called on playing 3gpp/amr audio files

2010-10-25 Thread joebowbeer
I have observed this and other problems in older versions of the media player (see Issue 398). FWIW, at that time an effective workaround was to create another thread to poll the progress. If the media clip failed to progress during the polling period, then you can assume it completed. Joe On

[android-developers] Re: Application still Running After Exit

2010-10-25 Thread Bret Foreman
Does Clear Data restore the preferences to their default state? On Oct 25, 9:37 am, Dianne Hackborn hack...@android.com wrote: On Sun, Oct 24, 2010 at 9:20 PM, Bret Foremanbegin_of_the_skype_highlighting end_of_the_skype_highlightingbret.fore...@gmail.comwrote: Since most apps of even

[android-developers] Re: Highlight focus item on listview

2010-10-25 Thread Gabriel Huie
So if that first paragraph didnt make sense im trying again I have a set of items in a ListView and am testing using the Android emulator. When I click a list item with my mouse the item background flashes yellow and then goes black when I release the mouse button. If I then scroll up and down

[android-developers] Re: How can I access data from SD card?

2010-10-25 Thread Prateek Jain
You can use the following code snippet to access sdcard - boolean mExternalStorageAvailable = false; boolean mExternalStorageWriteable = false; String state = Environment.getExternalStorageState(); if (Environment.MEDIA_MOUNTED.equals(state)) {

[android-developers] Web service access in Android

2010-10-25 Thread nena joy
Hello, I am new in android development. I want to get data from a web service in android application.But the application is in html5. Now it uses the data from a local xml file.how it get data from a web service? Please help me .. -- You received this message because you are subscribed to

[android-developers] Memory Leaking problem

2010-10-25 Thread kearnel_android
Hi, I'm facing a serious Memory Leaking problem. The code below is a ImageAdapter for android.widget.Gallery. After I rotate the screen for several times, the Application crashes and report a out of memory error: bitmap size exceeds VM budget. I wrote a finish() but it doesn't work either.

[android-developers] 2 questions

2010-10-25 Thread kernelpanic
my apologies up front for the noob questions 1) html hr equivalent - so I have a LinearLayout and need to provide some differentiation between views in that layout - similar to an hr / call in HTML. I've seen references to android:divider, but that only applies to lists AFAIK. What's is the

[android-developers] Reading Database files

2010-10-25 Thread Prateek Jain
Hi Everyone, Is it possible to read the database files in Android 2.1 ? For example, files in /data/data/com.android.providers.contacts/databases/ contacts2.db If yes, how? And is it possible to replace this file programmatically in order to import / export contacts or any other database files?

[android-developers] Google Android platform for robotics (serial connection support).

2010-10-25 Thread RoboHobby
Hi, 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-developers] Export and Import Contacts as a vCard. Android OS 2.l

2010-10-25 Thread Prateek Jain
Hi Everyone, I have seen various posts on importing contacts as a vCard format and didn't really got the clean way of achieving this. I tried following code to import the code - public void readContacts(View view) { ContentResolver cr = getContentResolver();

[android-developers] Re: Overriding user sms request

2010-10-25 Thread kernelpanic
hopefully not On Oct 16, 7:14 am, Omer omer...@gmail.com wrote: Is it possible to know when a user tries to send an sms message, and preventing him from doing so? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] Startup App

2010-10-25 Thread BostonGuy
I have been assigned the task to use an android tablet to run a single app in an enterprise setting. Ideally, when one switches on the tablet this app should be loaded perhaps during startup and the user need not step out of this app. The app logic itself is rather easy but I am wondering if it is

[android-developers] Re: Gogle: fix the effing Lunar Lander example, unless it's an example of crappy programming.

2010-10-25 Thread kernelpanic
heh heh On Oct 17, 6:56 am, orlandroid orlandro...@gmail.com wrote: I cannot believe this crap!! -- 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

[android-developers] Re: Gogle: fix the effing Lunar Lander example, unless it's an example of crappy programming.

2010-10-25 Thread kernelpanic
sorry - I meant say are you frustrated? On Oct 17, 6:56 am, orlandroid orlandro...@gmail.com wrote: I cannot believe this crap!! -- 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] How to support hard T9 keyboard on android?

2010-10-25 Thread cee1
Hi all, I've got a cell phone with a hard T9 keyboard and running android 2.1. I need to get T9 keyboard function well on android, How? I searched some information ( http://www.kandroid.org/android_pdk/keymaps_keyboard_input.html), can I achieve it by: 1. Writing keyboard layout map file.

[android-developers] Android UI development Tools

2010-10-25 Thread Sohil
Hi, Check this article to know various android UI development tools available http://www.dzone.com/links/android_ui_development_tools.html?ref=ps -- 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] NFC Examples Execution Problem

2010-10-25 Thread Android Humanoid
Hi Everyone, I'm trying to execute sample NFC application in Android given by Open NFC. I followed the help document provided by them, but when execution the connection is not setting up. First I would like to know what is Connection Center in that document. Can anyone please help me to run this

[android-developers] Problems with creating cache files and directories on HTC Desire

2010-10-25 Thread Dominik
Hi all, I've experienced a strange issue running applications on the HTC Desire. When I call getApplicationContext().getCacheDir() or getApplicationContext().getFilesDir() from my activity this always returns null. In the emulator /data/data/com.myapp.android/cache respectively

[android-developers] Slow - Jerky view Animation

2010-10-25 Thread FTCube
Hi I have a set of views to be distributed to their respective parent layouts. I need to animate the movement from the source layout to their parent layout. I created a AnimationSet to do this, but the animations are too jerky. Total number of views are 50. Each only the last 4-5 view movements

[android-developers] how to retrieve music file information

2010-10-25 Thread himanshu
i m developing a music player and i want to display mp3 file information like title, album, artwork when clicked on the song. plz help.. -- 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] webview.loadUrl - native

2010-10-25 Thread Itamar
Hey! Kinda a newbie question about android native and web view's loard url method: I need to understand how the webview loadurl is working behind the scene can somebody here point me out to the source code (native) that it's actually taking place? Thanks! Itamar -- You received this message

[android-developers] Re: How to speed up the Android emulator.

2010-10-25 Thread gbarros
I get a couple HOURS of load time on my linux box. 2x p4 3Ghz cpu use reported by /bin/top is 4% for emulator process. launch emulator with `emulator -cpu-delay 0 -no-boot-anim -cache / ramdisk/cache -noaudio` can't think of anything else to speed it up. i usually waits a couple hours then

[android-developers] Re: Can you code in Android? Could you spare some free time to help people with brain injury?

2010-10-25 Thread Android Humanoid
Hi FredDeer, Even I'm also ready to be part of the charity work that you are doing. On Oct 23, 3:27 pm, Infra Ali infraal...@gmail.com wrote: I would like to be part of the charity work with sincere heart On 22 Oct 2010 05:21, FredDeer mzz...@gmail.com wrote: Hi All, I have been asked by

[android-developers] Connection Center Settings

2010-10-25 Thread Android Humanoid
Hi All, Can anyone tell me how to do settings for Connection Center on Windows. -- 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] How to add images with textview in Listview

2010-10-25 Thread Prashant Adesara
Hello Friends, I giving your small example for how to add icon with listview in android. Below link will help you to how to add icon with listview. So, Please download and check by yourself. http://www.4shared.com/file/-MuD6_V4/How_to_show_List_view_with_Ico.html and if you have any doubts for

[android-developers] FroYo PC Emulator not showing WiFi Hotspot USB Tether menu

2010-10-25 Thread Maxx
I have the latest version of the FroYo 2.2 AVD created on my PC Emulator SDK, but it does not show the WiFi / USB Tethering menus. Not sure why ? Thanks for any help. Maxx -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

Re: [android-developers] Re: Google TV

2010-10-25 Thread Shane Isbell
Howard, any feedback on Google TV from Logitech? The reviews on Amazon are very mixed... On Wed, Oct 13, 2010 at 7:40 AM, Shane Isbell shane.isb...@gmail.comwrote: On Tue, Oct 12, 2010 at 11:59 PM, Howard M. Harte hhar...@gmail.comwrote: This is what I received from Logitech yesterday

[android-developers] soft keyboard in landscape

2010-10-25 Thread bean
In portrait mode, the soft keyboard(IME) is shown and my TextView instance resize properly. I can find out rescale height at view::onMeasure(). In landscape mode, the soft keyboard(IME) is show but my TextView instance doesn't resize. I get the full lcd height value at view::onMeasure(or

[android-developers] How do I assign each of my ListView list items an individual icon?

2010-10-25 Thread mattFllr
Hi, I'm very new to Android and Java delelopment, searching and reading various tutorials and using different parts of code from around the internet, trying to make sense of it as I go. Forgive me if my explanation isn't too great. Currently I have a list created with 4 list items, what I'd like

[android-developers] why is the app store sooo silly

2010-10-25 Thread mc007
yeah, here I am and I am just wondering why google's tec is behind apples ? - i can't set pricing schedules - the ranking doesn't seem to be very reasonable - 2 screen shots only (sorry, but thats very bad) - already too many trash out there - I can't pay without gmail account - no proper sales

[android-developers] unable to delete all references

2010-10-25 Thread Alok Upadhyay
Hi all, It is my very first mail to and dev. sorry it may be a silly question, i am getting frustated by this. i am very new on android however have worked on pl/sql. I have created two projects as helloWorld and helloAndroid(with some customization). I have deleted HelloWorld project from my

[android-developers] Re: Looking for someone to test with a 600mhz phone

2010-10-25 Thread g b
can't you use cpu delay on the emulator? -- g On Oct 24, 9:10 am, miniondev erics...@gmail.com wrote: Hello, I've just released Squibble Lite, a game i've been developing for android.  I've had access to a nexus1, a desire, and a samsung galaxy s to test on.  Unfortunately, these are all

[android-developers] Limitations of the MapView and MapActivity design

2010-10-25 Thread Jon Perlow
I was surprised to see a couple major shortcomings in the design of MapView and MapActivity. First, MapView requires itself to be hosted in a MapActivity. According to the documentation, A MapView can only be constructed (or inflated) by a

[android-developers] remote service called by apps concurrently

2010-10-25 Thread quicksoftxyz
I want to write a remote service by Aidl, which will provide an interface(named Ixyz) to other android client apps.In the interface Ixyz, a method named m1() is included. Method m1 will show different views by starting different activitys.In addition, We allow client apps call method m1()

[android-developers] Identifying users line drawings/gestures

2010-10-25 Thread Teh_Kieran
I need to extract information on lines that users draw in my application. I.e. If i user paints a line (in a typical painting app) I need to know how sharp/spiky the line is at places, and how round its edges are at others. In theory it would be able to tell the difference between a circle or

[android-developers] Why Toast.makeText() method has to extends Activity??

2010-10-25 Thread Ian k...@tw
Once I wrote: Toast.makeText(this, text, duration).show(); in a class why have this class extend Activity?? is that because of the this context? or what other parameter should I use? I've tried null' and not working.. Thank you for ur replying Faithfully, Ian k...@tw -- You received this

[android-developers] please, fix website

2010-10-25 Thread g b
Please, fix the website. try to: increase font size and still be able to read in the 2inches that the header does not hide. try to: read the website on a android device. to solve it, get rid of frames (really, they are frames. the most hated feature of all browsers, it doesn't matter if you

[android-developers] Accessing Shared Preferences of another Application

2010-10-25 Thread Android Humanoid
Hi Everyone, Can anyone help me in accessing the shared preferences of another application. Thanks Regards. -- 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

[android-developers] New phone App hardware accessory

2010-10-25 Thread chrisq
Hi App developers, This is not spam, developers can look at our new product and decide if they want to add a driver for it in their App. The product is a very small hand held printer, a Bluetooth or USB phone peripheral. Not every App will find the printer useful, many will. We have a simple

[android-developers] Android Reference Error

2010-10-25 Thread aliasname
/docs/reference/java/util/Comparator.html#compare(T, T) Compares the two specified objects to determine their relative ordering. The ordering implied by the return value of this method for all possible pairs of (object1, object2) should form an equivalence relation. equivalence relation

Re: [android-developers] Web service access in Android

2010-10-25 Thread Miguel Morales
Well, we won't do the whole project for you. If you own or wrote that web services all you need to do is write a script to output data to JSON or XML. Then from Android simply load the script and collect the information and display it in your app. Simple. Sounds like you don't have much

  1   2   3   >