[android-developers] The file path is not same

2012-01-26 Thread kyawswa aung
Hello! Now I am trying to load my zip files with using osmdroid lib from the sd card. My zip file is osmdroid zip format is generated by the MOBAC. The file path in my zip is not the same with the generated file path from the osmdroid lib. MOBAC generated like this

[android-developers] cannot run sqlite3 commands using ADB

2012-01-26 Thread ramkumar pinninti
Hi, I hava a rooted Samsung Galaxy Y mobile.I system/xbin folder sqlite3 is there.But when i run sqlite3 command using ADB following error is occuring # sqlite3 sqlite3 link_image[1963]: 2761 could not load needed library 'libncurses.so' for 'sqlit e3' (load_library[1105]: Library

Re: [android-developers] Disabled EditText is not working properly...?

2012-01-26 Thread Abhilash baddam
Thanks to allI tried as aparna told is working fine On Wed, Jan 25, 2012 at 3:05 PM, unicus unicus unicus...@gmail.com wrote: yes do set focusable false. *More info*, http://androidbasic-answer.blogspot.com/ -- You received this message because you are subscribed to the Google

[android-developers] AutoFocus for Android 4.0

2012-01-26 Thread perumal316
Hi All, I have an camera app done for Android 2.3 which basically starts the CameraPreview class and draws a rectangle over the preview and does autofocus within the preview. It works without any issues in Nexus S running on Android 2.3. But when I run this app on Galaxy Nexus running on Android

Re: [android-developers] Re: android accelerometer to measure distance

2012-01-26 Thread heri_hahihu
ok tom thanks for reply.. tom i just want to measure near distance , just 20 cm or 30 cm.. can u give me idea? how if i use proximity sensor? On Thu, Jan 26, 2012 at 1:07 AM, TomL tomlo...@gmail.com wrote: http://en.wikipedia.org/wiki/Kinematics#Displacement Acceleration is delta velocity

[android-developers] Localization of String.format causing problems

2012-01-26 Thread RLScott
My app writes files with strings generated by code like: s = String.format(%6.2f\r\n, zValue); where zValue is a float. Then it reads those files back in later and parses them, expecting to see a number with a decimal point (.). This works fine for my phone and for all the Android devices in

[android-developers] Re: How to identify on which marker user had taped

2012-01-26 Thread Spiral123
Google 'Android MapView Balloons' On Jan 26, 2:37 am, ripal hiral ripalhi...@gmail.com wrote: I want that on taping particular marker I want to show Balloon Like in Google map we have When User tap on Particular marker Balloon containing Info related to that Geo point is display .. I am new

Re: [android-developers] Localization of String.format causing problems

2012-01-26 Thread Mark Murphy
http://stackoverflow.com/questions/5236056/force-decimal-point-as-seperator-in-java On Thu, Jan 26, 2012 at 8:05 AM, RLScott fixthatpi...@yahoo.com wrote: My app writes files with strings generated by code like: s = String.format(%6.2f\r\n, zValue); where zValue is a float.  Then it reads

[android-developers] Re: Localization of String.format causing problems

2012-01-26 Thread RLScott
Problem solved, I think. I just have to change all my String.format(... statements to String.format(Locale,US,... -- 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] Android@Home

2012-01-26 Thread hudvin
is there any news about Android@Home? I didn't found anything except presentation notes. -- 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,

[android-developers] calling showDialog(dialog_id) in Activity consists GLSurfaceView

2012-01-26 Thread Avatar Ng
Application exit and throw error when I trying to call showDialog() in an Activity consisting GLSurfaceView -- 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

Re: [android-developers] Android@Home

2012-01-26 Thread Mark Murphy
I haven't heard much of anything about Android@Home specifically. Various USB host and accessory mode APIs were added in Gingerbread, to enable the @Home sort of tech. But the brand name Android@Home seems fairly quiet. On Thu, Jan 26, 2012 at 8:26 AM, hudvin hud...@gmail.com wrote: is there any

Re: [android-developers] calling showDialog(dialog_id) in Activity consists GLSurfaceView

2012-01-26 Thread TreKing
On Thu, Jan 26, 2012 at 7:27 AM, Avatar Ng ngchee...@gmail.com wrote: Application exit and throw error when I trying to call showDialog() in an Activity consisting GLSurfaceView Alright then. Thanks for sharing. http://www.catb.org/~esr/faqs/smart-questions.html

[android-developers] Reusable About Dialogs, etc

2012-01-26 Thread momojo
Hello All; I have seen many apps that seem to be using similar components for ui including an about dialog. Is there some sdk out there that people are using to gain this uniform look and save some coding time, or is everyone just rolling their own? -- You received this message because you are

RE: [android-developers] Re: Encoder???

2012-01-26 Thread Muhammad UMER
hi skink, I google to much about the moov and mdat atoms and i found that the 3gp file consist of some atoms order by ftyp-moov-mdat or ftyp-mdat-moov, mdate are our orignal sound and video where moov atom are use to make the file playable. so as i found that my server have to

[android-developers] how to distribute a Library Project WITHOUT source code (as jar file) as some sort of SDK?

2012-01-26 Thread Klier Rainer
hi android-developers, i am trying to convert my existing (and working) app project into 2 projects. the first project (a library project) should act as a kind of SDK. the second project should use the first and make the original app. my goal is to be able to distribute the first project only

Re: [android-developers] how to distribute a Library Project WITHOUT source code (as jar file) as some sort of SDK?

2012-01-26 Thread Mark Murphy
It is possible to create an Android library project that does not include source code. The limitations are: -- You still have to ship the resources. -- You have to rewrite your code to avoid using R. values, as they will be wrong. You will have to look up all resource IDs using

[android-developers] gridview weirdness

2012-01-26 Thread John Davis
Hello I modified the hellogridview example so it has 5 colunns by changing the NumColunns property from auto_fit to 5. This is great, it gives me 5 columns, however it only gives me one row. How to set so it gives additional rows? -- John F. Davis 独树一帜 -- You received this message because

[android-developers] Fragment Custom Animation on Honeycomb

2012-01-26 Thread hooman os
Hi Guys I am trying to add a custom animation to my FragmentTransaction. I have used both setCustomAnimations() methods (2 and 4 arguments) but it seems that it does not work. I am trying the code on Sony Tablet (Android 3.2.1) I would appreciate any tips. Hooman -- You received this message

Re: [android-developers] gridview weirdness

2012-01-26 Thread Mark Murphy
Give it an Adapter with more than five items. On Thu, Jan 26, 2012 at 10:59 AM, John Davis davi...@gmail.com wrote: Hello I modified the hellogridview example so it has 5 colunns by changing the NumColunns property from auto_fit to 5. This is great, it gives me 5 columns, however it only

Re: [android-developers] gridview weirdness

2012-01-26 Thread John Davis
Many thanks. 2012/1/26 Mark Murphy mmur...@commonsware.com Give it an Adapter with more than five items. On Thu, Jan 26, 2012 at 10:59 AM, John Davis davi...@gmail.com wrote: Hello I modified the hellogridview example so it has 5 colunns by changing the NumColunns property from

Re: [android-developers] how to distribute a Library Project WITHOUT source code (as jar file) as some sort of SDK?

2012-01-26 Thread Klier Rainer
hi mark, thank you for your fast response. Am 26.01.2012 15:57, schrieb Mark Murphy: It is possible to create an Android library project that does not ahh, do you mean like suggested here: http://blog.sofisoftware.com/post/2011/10/05/Android-Library-projects-and-Jars You have to rewrite your

Re: [android-developers] Fragment Custom Animation on Honeycomb

2012-01-26 Thread iñaki
You can put code please? ft.setCustomAnimations(Enter, Exit); What is your problem? Iñaki On 26 January 2012 17:15, hooman os hoomi2...@gmail.com wrote: Hi Guys I am trying to add a custom animation to my FragmentTransaction. I have used both setCustomAnimations() methods

[android-developers] Re: Scroll View

2012-01-26 Thread Oliviu Vais
I have tried those events. I need to use a while loop, but when i use it within my ontouch i get an error on my device, it goes forever. I read somewhere i need to put it in a new thread. Can you please show me how can i do that? On Jan 26, 5:09 am, TreKing treking...@gmail.com wrote: On Wed,

[android-developers] any idea why this gridview has large vertical spacing between rows

2012-01-26 Thread John Davis
http://netskink.blogspot.com/2012/01/grid-view-notes.html -- John F. Davis 独树一帜 -- 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

Re: [android-developers] how to distribute a Library Project WITHOUT source code (as jar file) as some sort of SDK?

2012-01-26 Thread Mark Murphy
On Thu, Jan 26, 2012 at 11:25 AM, Klier Rainer rainer.kl...@xyzmo.com wrote: ahh, do you mean like suggested here: http://blog.sofisoftware.com/post/2011/10/05/Android-Library-projects-and-Jars Considering that's referencing some of my early work on the subject, yes. :-) you mean i should

Re: [android-developers] any idea why this gridview has large vertical spacing between rows

2012-01-26 Thread Mark Murphy
Use Hierarchy Viewer to examine your activity. If I had to guess, your Adapter is returning cells that big. 2012/1/26 John Davis davi...@gmail.com: http://netskink.blogspot.com/2012/01/grid-view-notes.html -- John F. Davis 独树一帜 -- You received this message because you are subscribed to

Re: [android-developers] Re: Http post and get

2012-01-26 Thread Nedim Muminovic
Solved. Thanks On 21 January 2012 05:50, Guus Bloemsma g...@bloemsma.net wrote: You have to reuse the same cookie store, or better yet, the same http client. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

Re: [android-developers] any idea why this gridview has large vertical spacing between rows

2012-01-26 Thread John Davis
Hello Mark, You mentioned that tool before. I have yet to look it up. I assume this is the starter page for it http://developer.android.com/guide/developing/debugging/debugging-ui.html I'll look into it. Thanks man. John 2012/1/26 Mark Murphy mmur...@commonsware.com Use Hierarchy Viewer to

Re: [android-developers] any idea why this gridview has large vertical spacing between rows

2012-01-26 Thread Mark Murphy
Yup, that's it. On Thu, Jan 26, 2012 at 12:07 PM, John Davis davi...@gmail.com wrote: Hello Mark, You mentioned that tool before. I have yet to look it up. I assume this is the starter page for it http://developer.android.com/guide/developing/debugging/debugging-ui.html I'll look into it.

Re: [android-developers] Delayed modification of ListView row causing a rebuild of the entire list when scrolling

2012-01-26 Thread mattcoz
No rules? It's a computer program, all it has are rules. The behavior is completely consistent and reproducible. I've been going over the source for ListView but can't quite track down the specific rule that is causing it. -- You received this message because you are subscribed to the

Re: [android-developers] Delayed modification of ListView row causing a rebuild of the entire list when scrolling

2012-01-26 Thread Mark Murphy
On Thu, Jan 26, 2012 at 12:24 PM, mattcoz matt...@gmail.com wrote: No rules?  It's a computer program, all it has are rules.  The behavior is completely consistent and reproducible. By no rules, I mean there is no documented behavior. You should not be assuming any particular number of times

Re: [android-developers] Re: Scroll View

2012-01-26 Thread TreKing
On Thu, Jan 26, 2012 at 10:34 AM, Oliviu Vais oliviu.v...@gmail.com wrote: I have tried those events. I need to use a while loop, but when i use it within my ontouch i get an error on my device, it goes forever. Well, yeah. I read somewhere i need to put it in a new thread. Where was

Re: [android-developers] Re: Scroll View

2012-01-26 Thread Kostya Vasilyev
Rather than using a thread, you might want to schedule a task delayed by a certain amount. There are several ways to do this with the Android framework, here is one: http://developer.android.com/reference/android/view/View.html#postDelayed(java.lang.Runnable, long) -- K 26 января 2012 г. 20:34

[android-developers] Still unclear -- subscriptio model using paypal

2012-01-26 Thread Miriam Raphael Roberts
I have looked at numerous posts and there is still some ambiguity.-- Is it possible to have a subscription model using either Paypal or the in-app billing model? If we use in-app billing, do we need to prompt the user each month that we charge them? Instead of in-app billing, can we use

[android-developers] Images _display_name is changed in external db at com.android.provider.media/external.db

2012-01-26 Thread @45
Hello Everyone , I am using MediaStore.Images.Media.EXTERNAL_CONTENT_URI(External DB :: data/data /com.android.provider.media/external.db)) in my app to save images with my own _display_name for example : image_101.jpg but after some time the display name is change into long no. like

[android-developers] setting radio button text by xml tag contents

2012-01-26 Thread mayur
how to set the text of radio button by xml tag exactly I know there is getText() method available but it is not pointing to correct tag to get text. Help me -- 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] OpenGL Textures and Transparency. Square holding the texture still shows.

2012-01-26 Thread Nick Miller
Hello, I've run into a problem using OpenGL with Android. I'm trying to create a transparent sprite that appears in my game application. The sprite is (.png) format and contains transparent values (alpha=0) around the image. Loading the image isn't a problem. I'm able to have the image load onto

[android-developers] SQLiteDatabase.execSQL() not behaving as expected

2012-01-26 Thread Robert Hawkey
Hi everyone, I have an app I wrote for the iOS that makes extremely heavy use of a large database, I am now porting that app to the Android platform. I have a great deal of operations that follow this pattern: 1db.execSQL(CREATE TEMPORARY TABLE SearchResults(Name text);); 2

[android-developers] Re: Unable to send text messages on some Android Phones using SmsManager

2012-01-26 Thread Dantelope
Great timing. We just figured this one out. If you include BOTH PendingIntent arguments and point them to dummy classes, it works. We tested this with our problematic Vivid. I'll update if any additional testing shows anomalies. On Jan 21, 2:40 pm, voicely ad...@voice.ly wrote: Hello, My

[android-developers] Re: Unable to send text messages on some Android Phones using SmsManager

2012-01-26 Thread Dantelope
We are experiencing the same issue with a Vivid -- and only on the Vivid so far. What's strange is the same code works for us on a Samsung Galaxy S II and on the Evo and on the Sidekick -- phones you've indicated calls about. And for us it doesn't happen *ALL* the time. It's very strange. Would

[android-developers] Still unclear -- subscription model using Paypal

2012-01-26 Thread Miriam Raphael Roberts
I have looked at numerous posts and there is still some ambiguity.-- Is it possible to have a subscription model using either Paypal or the in-app billing model? Does it or does it not violate the Android Terms of Service? If we use in-app billing, do we need to prompt the user each month that

[android-developers] ADB.exe not in SDK?

2012-01-26 Thread adystate
Eclipse (indigo) comes up with this error message: [2012-01-24 14:05:43 - DDMS] DDMS files not found: C:\Program Files \Android\android-sdk\platform-tools\adb.exe This is not surprising as that directory does not exist either. They suggest using the SDK manager to download this file the SDK

[android-developers] Grammar for speech recogniton

2012-01-26 Thread Patrick Tchankue
Hi everyone!! I would like to use the speech API in a program, but due to accent issues the recognition rate is very low. I tried to use a custom grammar by adding import android.speech.srec.Recognizer; but there is an error the import cannot be resolved. What can I do to overcome this problem?

[android-developers] Adding new language support

2012-01-26 Thread ModakS
Hi, I am using Android 4.0 and want to add new language support. How shall I start? Is there any good tutorial? I am not looking for language support for any particular app. I want my phone to be working in a new language totally. Please help me. Thanks, -- You received this message because

[android-developers] External Data Storage

2012-01-26 Thread Punam Mahajan
-How to create directory within directory on external storage? like directory MyFile in that different types of directory like songs,pictures,etc -can I see It on Emulator? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] On ICS, Stopped service can't receive an intent.

2012-01-26 Thread Ravi Pandey
I have tried to design a Service in such a way that once it's receiver can receive the BOOT_COMPLETED intent , the service gets started. Basically the startService() function gets called when the Service's BroadCastReceiver receives the BOOT_COMPLETED intent inside it's onReceive() function. Now

[android-developers] Images _display_name is changed in external db at com.android.provider.media/external.db

2012-01-26 Thread Ajay Sharma
-- I am using MediaStore.Images.Media.EXTERNAL_CONTENT_URI(External DB :: data/data/com.android.provider.media/external.db)) in my app to save images with my own _display_name for example : image_101.jpg but after some time the display name is change into long no. like 1327392947034.jpg. and

[android-developers] How can I install a CA root certificate on Android 2.3.4?

2012-01-26 Thread Rene
Hi. Where I work use an internal CA root. One service attached to this CA is the exchange, then I need to sync my android device with email, calendar, contacts, etc. How can I install a CA root certificate on Android 2.3.4? TIA -- You received this message because you are subscribed to the

[android-developers] Hi

2012-01-26 Thread siri
Dear all i started to learn android plz guide me -- 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] Android VideoView OnCompletionListener not working

2012-01-26 Thread Sridiculous
I am trying to implement a simple VideoView that would play the Video from the file system. The Video loads fine and plays just fine. However, I would like to know when the Video finished playing so that I can finish() the activity and resume with the next. Here is what I have. ?xml version=1.0

[android-developers] Re: File encryption using AES

2012-01-26 Thread JJ
Suggestion: FileName.EXT -- FileName.EXT.ENC, then decrypt to FileName.EXT Keep the original extension in the encrypted filename. -- 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] Re: javax.management

2012-01-26 Thread jb
I guess I found a simple solution: Implementing a subclass of android.app.Application and reacting on public void onTrimMemory (int level). From the documentation: Called when the operating system has determined that it is a good time for a process to trim unneeded memory from

[android-developers] How to change the behaviour of an activity at runtime?

2012-01-26 Thread david wang
I need to start a target activity at runtime, and disable some buttons (such as BACK and HOME button) for it, these button are enabled by default in the implementation of the target activity. Since the target activity is configurable, I don't know which activity it is until runtime. And a

[android-developers] Keylayout file. Key code for KEYCODE_NUMPAD_ENTER?

2012-01-26 Thread Kathrin-J.
Hi, I have a question regarding the keylayout file and the key codes that are part of it. The keylayout file that is used by default looks like this: -- key 399 GRAVE key 2 1 key 3 2 key 4 3 key 5 4 key 6 5 key 7

[android-developers] Running an executable from Android / Java code

2012-01-26 Thread ethanc
Hi All, I am trying to run an executable that should persist after the android application exits - under linux I am using Runtime.getRuntime().exec (myexeutable), It does not work, An ideas what should be done? Is there another way to execute from java a process? Thanks Ethan -- You

[android-developers] Actionbar with men button and tabs.

2012-01-26 Thread etnica
Hello, i have created an actionbar with fragment tabs, I also added a menu button and its here my problems starts. Google has in android 4 moved the hardware menubutton to a software button in the actionbar, so I need to share it with the space with my tabs. What happens in horizontal mode is

[android-developers] How to set a keylayout file?

2012-01-26 Thread Kathrin-J.
Hi, I'm using the DDMS for debugging my application. Each time I press a button a warning is thrown: No keyboard for id 0 Using default keymap: /system/usr/keychars/qwerty.kcm.bin I found commands to set the keychar and keylayout to a specific file, but it does not work :( I'm typing this

[android-developers] Need suggestion on architecture.

2012-01-26 Thread Vasudev Sharma
Hi All, I have experience working of with Linux platform but I am quiet new to Android, I need suggestion with the new architecture of an existing application while porting from Linux to Android. I have created a custom hardware device and connected to Linux PC. 1. there is a demon application

[android-developers] How to check SNS(twitter,Google+,google talk) functionality in Android4.0(ICS)

2012-01-26 Thread rakesh kumar
Hi, (1) Can any one tell how we can check the SNS(twitter,Google +,google talk) functionality in Android4.0. (2) Can any one tell How we can register emulator with an google account. Thanks in Advance -- You received this message because you are subscribed to the Google Groups

[android-developers] Javascript injection not working reliably

2012-01-26 Thread cqm
Hello, I am loading webviews in a viewpager. I do the javascript injection onPageFinishedLoading but it doesn't reliably work, it should be changing some elements in the CSS but it does not respond -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Issue in playing m3u8 file in android 3.2

2012-01-26 Thread titus t
I am trying to play apple test stream video(.m3u8) in android this is the link: http://devimages.apple.com/iphone/samples/bipbop/gear1/prog_index.m3u8 But i am not able to play in android 3.2. This is the code i have used to play the video void playvideo(String url) {

[android-developers] Re: Gallery Intent to pick image --- Picasa-based images are invalid (Android 4.0+)

2012-01-26 Thread Anton
Workaround is here: http://jimmi1977.blogspot.com/2012/01/android-api-quirks-getting-image-from.html On Jan 8, 7:57 pm, John droidxl...@gmail.com wrote: I can confirm having this same bug only with picasa images on Honeycomb and ICS. Code: file = new File(getPath(intent.getData()));

[android-developers] Android AVD simulator won't run Apps with XML Readers`

2012-01-26 Thread duadinam
Hi, I've been given an assignment to create an RSS feed reader. The project compiles, but I can't run it with any of the AVD's. It starts running and then it shuts down without displaying any views. Other applications works, but applications with XML readers that I downloaded also crash. If

[android-developers] creating and reading files

2012-01-26 Thread agostino aless
File file = new File(General.getPath()); if(!file.exists()) { file.createNewFile(); } System.out.println(path del file: +

[android-developers] GPS multipath errors filtering?

2012-01-26 Thread Dmitry Zhadan
Hello! I'm develop an application which uses GPS to periodically determine user location. The problem is that when the user is stationary, the successive locations comes with a large jumps in latitude and longitude (up to 100 meters). Is there any way to filter out these jumps (also known as GPS

[android-developers] Fragments with custom list adapter causing crash on inflate view

2012-01-26 Thread Ste
I am attempting to convert one of my apps to use Fragments to improve how the app looks and works on ICS / Honeycomb but I've come across a problem which although I've spent many hours Googleing and reading answers on here I can't seem to find a fix for. I have a custom list adapter which is used

[android-developers] sending mms

2012-01-26 Thread Norman Rosano
dear friends, looking for help.. earlier i'm sending mms and i did it.. but this few day i'll try to send another mms.. and nothing happened.. until this time the message still sending.. i send this message last Jan 20 What happened?! my unit is samsung Y.. what should i do for this.. thanks

[android-developers] android help

2012-01-26 Thread ajay talreja
hii i'm an beginner in android... My problem in android... i want to send sms from a numeric touch pad via programming.. i m not able to find how to put up the code for numeric pad.i did google many times but im unable to find the same.the application should work same as speed

[android-developers] unabke to browse site in urdu

2012-01-26 Thread Rizwan Arif
Hi m unable to browse following website on galaxy s2. It opens bt body is blank . its www.express.com.pk -- 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] Read XML file in android application

2012-01-26 Thread Mai Al-Ammar
Hello every one, Could you please help me with a way to read an XML file in android application, I use Android SDK with eclipse and I tried number of ways but unfortunately I did not obtain any result. Almost all ways said put the xml file under the directory res/xml/ , but when I put it and

[android-developers] Re: Hardware accleration slow down every Canvas app. Why?

2012-01-26 Thread Tobias
Would it be possible to have the framework batch rendering operations automatically by using some kind of retained mode rendering, to make life easier for developers? /Tobias On 17 Jan, 00:47, Romain Guy romain...@android.com wrote: I Romain I really appreciate your effort to help me, really

[android-developers] Re: Gallery Intent to pick image --- Picasa-based images are invalid (Android 4.0+)

2012-01-26 Thread Anton
Workaround is described here: http://jimmi1977.blogspot.com/2012/01/android-api-quirks-getting-image-from.html -- 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] Questions about Permission

2012-01-26 Thread john an
I am unfamilier with android and programming. I want to know about what each permission implies. I already found out the descriptions of them on the website of android developer, but it is really difficult for me to understand unfamiliar and expert words exactly. My ultimate purpose is to

[android-developers] Creating an application to edit photos

2012-01-26 Thread Soorie
Hi All, I want to create an application where I can edit user's photos. Editing here will involve many options like painting eye brows, changing face color, applying lipstick of different colors in lips, applying eye liner, changing hair style etc. I have tried to search for android APIs to do

[android-developers] How to set a keylayout file?

2012-01-26 Thread Kathrin-J.
Hi, I'm using the DDMS for debugging my application. Each time I press a button a warning is thrown: *No keyboard for id 0 Using default keymap: /system/usr/keychars/qwerty.kcm.bin* I found commands to set the keychar and keylaout to a specific file, but it does not work :( I'm typing this

[android-developers] Installation Troubleshooting SDK Manager inside Eclipse

2012-01-26 Thread DragonPaul
Hi all, thanks for this forum- it's great to see so many people helping each other out. I am installing several platforms (4.0.3, 2.3, and 2.2) and am running into trouble when downloading certain components within Eclipse's SDK mgr. Mainly, when downloading and installing 'Dual-screen APIs by

[android-developers] AlarmManager does not fire?

2012-01-26 Thread Rudolf Polzer
Please give me a hint why the AlarmManager does not fire. In my app, the AlarmManager is set after a user action: Context c = this.getApplicationContext(); AlarmManager am = (AlarmManager)c.getSystemService(Context.ALARM_SERVICE); Intent i = new Intent(c, OnAlarmReceiver.class);

[android-developers] Connect Android 2.3.4 Tablet to SMART Board interactive whiteboard

2012-01-26 Thread bitxin
Hello to everybody: I'm trying to connect my Android 2.3.4 Tablet to a SMART Board interactive whiteboard (SMART Technologies/www.smarttech.com) through an USB OTG cable. I just want to turn the SMART Board interactive whiteboard into my Tablet's desktop and manage everything as if it were my

[android-developers] ICS 4.0.3 SimpleJNI apk does not contain classes.dex

2012-01-26 Thread pk_android
Hi, I have downloaded ICS 4.0.3. source from repo and built SDK in ubuntu 10.04 (64 bit). I built SimpleJNI apk from development/samples. When i try to install SimpleJNI.apk into emulator it does not install because apk does not contain classes.dex But if i build in gingerbread SDK ( source

[android-developers] NDEF_DISCOVERED intent-filter in ICS

2012-01-26 Thread bcntouchkk
Hi there, I've discovered a strange behaviour in Android Ice Cream Sandwich. Previously a discovery of an NFC tag containing URL was passing through the intent-filter and showing possible applications for handling this content. In ICS 4.0.3 URI's are handled directly in the browser and intent-

[android-developers] SDK for FM radio

2012-01-26 Thread LazyDeveloper
I am interested in building a FM radio app. Does Android SDK provides any related API? -- 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,

[android-developers] How to pass information to motoprint.

2012-01-26 Thread Matt Glover
I am very new to coding for android. My senior project is a new android app and I am having an issue with part of the functionality. In its most basic form, I need to pass a sqllite New Entry to a wireless motoprint printer. A little deeper: I will be updating a database in the application. Every

[android-developers] USB communication on Samsung Galaxy y with Android 2.3.5

2012-01-26 Thread Muhammad Ghandour
I'm Developing an Android app to communicate with a USB peripheral, The App is designed for a non-commercial purpose so it is gonna run only on a Samsung Galaxy young with Android 2.3.5. After a bit of searching i used the Google APIs add-on library com.android.future.usb i went through the

[android-developers] My First android programming

2012-01-26 Thread Sahar Harati
Hi! I'm new in android programming. I've developed a program that works perfectly on android emulator but I don't know how can I install it on my android device. thank you in advanced :) -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Eclipse launch emulator error...

2012-01-26 Thread stringa
Hello. There was a time where I tried to setup an emulator launch option in Eclipse, since then, I have removed the string. I keep getting the following error. I've reinstalled the SDK, I've deleted and re-created the project from my SVN sources and I keep getting this error in Eclipse.

[android-developers] GridView application keeps crashing

2012-01-26 Thread Sudheer
Hi, I am new to android, my application keeps crashing with the following errors. I am using API Level 15. `01-26 19:50:45.820: E/AndroidRuntime(963): FATAL EXCEPTION: main 01-26 19:50:45.820: E/AndroidRuntime(963): java.lang.NullPointerException 01-26 19:50:45.820: E/AndroidRuntime(963):

[android-developers] NfcAdapter.enableForegroundNdefPush(Activity, NdefMessage message) and Serial Number

2012-01-26 Thread snoopy
Hello! When sharing a virtual tag using the enableForegroundNdefPush of an NfcAdapter instance object, i try to read the so-shared ndef message with my desktop reader (ID ISC CPR 40.30 USB). Well, it won't work. As I got by debugging, my reader works in addressed mode. That is, I first run the

[android-developers] AutoCompleteTextView suggestions select take user to the interface.

2012-01-26 Thread Kenneth Lor
So say i am tring to use the AutoCompleteTextView suggestions to be able to bring user to the .xml i have created. If you cant understand please have a look here http://stackoverflow.com/questions/8997684/autocompletetextview-or-searchdialog Here are my codes, i marked errors in comment //

[android-developers] getting started

2012-01-26 Thread Android Developer
when did you guys get started working on android and why did you start? Is it possible to be a serious Android developer and also hold another non-related 9-5 job? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] HorizontalScrollView with Scrolbar

2012-01-26 Thread chimouch
i have a horizontalscrollview but i want disable the scrolling when touching on items, and the scroll will be done only by the scrolbar,because i would like to use a multiselection. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Help please. nand renamed sdcard

2012-01-26 Thread pers348 pers348
I have a problem after climbing into androide 2.3. I renamed nand in sdcard how is this possible? Can you help me get her back. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] My First android programming

2012-01-26 Thread Mark Murphy
http://developer.android.com/guide/developing/device.html On Thu, Jan 26, 2012 at 8:44 AM, Sahar Harati saharati2...@gmail.com wrote: Hi! I'm new in android programming. I've developed a program that works perfectly on android emulator but I don't know how can I install it on my android

Re: [android-developers] SDK for FM radio

2012-01-26 Thread Mark Murphy
No, sorry, there is no support for FM radio in the Android SDK. Not all Android phones have FM radio tuners. Manufacturers who do offer a tuner might have their own SDK add-ons for FM radio control, but you would have to check with them. On Thu, Jan 26, 2012 at 3:27 AM, LazyDeveloper

Re: [android-developers] How to pass information to motoprint.

2012-01-26 Thread Mark Murphy
For questions about MOTOPRINT, you are probably better served with the MOTODEV support boards: http://community.developer.motorola.com/ On Wed, Jan 25, 2012 at 11:13 PM, Matt Glover mattcglo...@gmail.com wrote: I am very new to coding for android. My senior project is a new android app and I

Re: [android-developers] AlarmManager does not fire?

2012-01-26 Thread Mark Murphy
Nothing leaps out at me as being wrong, other than getApplicationContext() (just use this instead of c). But that should not cause a problem. Make sure that this section of code is being executed, and make sure there are no warnings of note in LogCat. On Thu, Jan 26, 2012 at 3:50 AM, Rudolf

Re: [android-developers] How to change the behaviour of an activity at runtime?

2012-01-26 Thread Mark Murphy
On Wed, Jan 25, 2012 at 1:41 AM, david wang davidwangc...@gmail.com wrote:  I need to start a target activity at runtime, and disable some buttons (such as BACK and HOME button) for it, these button are enabled by default in the implementation of the target activity. You cannot disable the

Re: [android-developers] External Data Storage

2012-01-26 Thread Mark Murphy
On Tue, Jan 24, 2012 at 5:40 AM, Punam Mahajan punam.0...@gmail.com wrote: -How to create directory within directory on external storage? like directory MyFile in that different types of directory like songs,pictures,etc Use Java file I/O: http://exampledepot.com/egs/java.io/CreateDir.html

Re: [android-developers] SQLiteDatabase.execSQL() not behaving as expected

2012-01-26 Thread Mark Murphy
I have never used MATCH in SQLite. The LIKE operator uses %, not *, as the wildcard. http://sqlite.org/lang_expr.html On Tue, Jan 24, 2012 at 10:45 AM, Robert Hawkey rhaw...@gmail.com wrote: Hi everyone, I have an app I wrote for the iOS that makes extremely heavy use of a large database, I

Re: [android-developers] Adding new language support

2012-01-26 Thread Mark Murphy
This list is for developing applications with the Android SDK. You cannot add a language to a device via the Android SDK. You have to create custom firmware that contains the language support and apply that firmware to your device. To learn how to create custom firmware, visit

  1   2   >