[android-developers] sdk version

2012-04-26 Thread fachhoch
if I want to deploy my app in a real device should that device sdk version match with my app sdk version? Also how can I find the sdk version of any device? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email

[android-developers] Customizing Android Battery Icon

2012-04-26 Thread Jovish P
Is it possible to customize default Battery Icon on Android without rooting the phone ? Any APIs are available ? Any way to do that ? -- 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@g

[android-developers] Android application StartUp Internals

2012-04-26 Thread Mansoor
Hi all, I am very much interested to know how an android application starts.After much googling I understood something but not fully. Below some of my observations: 1.When i click an application icon from launcher ,System look for activity with intent action "main" and category "Launcher" and sta

[android-developers] Re: OnTouchEvent disable

2012-04-26 Thread moktarul anam
Dear Memo, try to use view.setFocusable(false) and check Enjoy Moktarul Anam On Friday, 27 April 2012 09:16:39 UTC+5:30, Memo wrote: > > Hello every one, > > In my program, I handle a touch event on the screen using OnTouchEvent, if > I handle the touch , I will do some tasks and during t

[android-developers] Re: OnTouchEvent disable

2012-04-26 Thread moktarul anam
Dear Memo, try to use view.setFocusable(false) and check Enjoy Moktarul Anam On Friday, 27 April 2012 09:16:39 UTC+5:30, Memo wrote: > > Hello every one, > > In my program, I handle a touch event on the screen using OnTouchEvent, if > I handle the touch , I will do some tasks and during

[android-developers] Android application StartUp Initialization

2012-04-26 Thread Mansoor
Hi all, I am very much interested to know how an android application starts.After much googling I understood something but not fully. Below some of my observations: 1.When i click an application icon from launcher ,System look for activity with intent action "main" and category "Launcher" and sta

[android-developers] Re: Android writing to file and Upload it to server

2012-04-26 Thread Spiral123
I think the correct spelling is plz. On Friday, April 27, 2012 1:02:18 AM UTC-4, android developer wrote: > > Hi Good morning all. > > Android writing to file and Upload it to server , pls help me on this > issue. > > Thanks and regards > > -- You received this message because you are subscribe

Re: [android-developers] Android writing to file and Upload it to server

2012-04-26 Thread Justin Anderson
http://www.catb.org/~esr/faqs/smart-questions.html Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Thu, Apr 26, 2012 at 11:02 PM, android developer < android.developer4...@gmail.com> wrote: > Hi Good morning all. > > Android writing to file and Upload i

[android-developers] Android writing to file and Upload it to server

2012-04-26 Thread android developer
Hi Good morning all. Android writing to file and Upload it to server , pls help me on this issue. Thanks and 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

Re: [android-developers] no searching of sd card files

2012-04-26 Thread asheesh arya
hi sandhu, by using this code you easily search and access all file store in your sd card with in your application main.xml http://schemas.android.com/apk/res/android"; android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent">

[android-developers] SDcard booting on blaze board through fastboot

2012-04-26 Thread Mamatha K
Dear All, I am facing problem in sdcard booting on blaze board. Blaze board also has nand flash. So when the given fastboot is executed its going on flash memory. But in my project we are using blaze board WITHOUT internal memory ( i.e, it has to boot from sdcard). So we need to fastboot t

[android-developers] OnTouchEvent disable

2012-04-26 Thread Mai Al-Ammar
Hello every one, In my program, I handle a touch event on the screen using OnTouchEvent, if I handle the touch , I will do some tasks and during that, I want to disable touch event handler, i.e the OnTouchEvent does not respond to the touch. Could you please help me. Thanks all in advance. --

Re: [android-developers] Re: How to get accurate time stamps from Android GPS location.

2012-04-26 Thread Andrew Gregory
Each subframe (sent every six seconds) has the *GPS Time*. The GPS/UTC offset is only sent in subframe 4 of page 18 of the almanac data, i.e. once every 12.5 minutes. Also, a comment on the ZDA message mentioned previously. I had tried that as part of my project R&D and it also returns "best guess

[android-developers] Re: GPS Location returns zero speed always

2012-04-26 Thread David Ross
My problems is not with failure or inaccurate readings, it has to do with why the GPS provider does not provide speed and bearing values when it returns a new Location. I have done a simple test and reduced the minimum time between location updates from 1 minutes to 10s and then I consistently get

[android-developers] Re: Backporting stagefright and NuPlayer to Android 2.2?

2012-04-26 Thread Kiran Rao
Thanks for the response b0b. I realize MediaPlayer will not do the job for me - at least in 2.2. But, is there any framework-level requirement that is stopping me from building the newer media framework source and deploying it on 2.2? Perhaps this would make my app prohibitively large? Or perfo

[android-developers] help to get Bussiness Calender in my App

2012-04-26 Thread vamshi ch
hi all, In my project i have the requirement like add or inject Bussiness Calender.. so user can make to add appointments,reminders,notes,calls and dairy by that calender(touch&select date) so that i have this type of requirements...could you pls any one help me out on this -- You recei

Re: [android-developers] systemUiVisibility is a global flag across apps?

2012-04-26 Thread Agus
Thanks Mark, As soon as I throw a dialog within activity that has setSystemUiVisibility set to HIDE_NAVIGATION, that flag got cleared. Is that the expected behavior? -Agus. On Thu, Apr 26, 2012 at 5:14 PM, Mark Murphy wrote: > On Thu, Apr 26, 2012 at 8:07 PM, Agus wrote: > > I am wondering i

Re: [android-developers] Fragment.onActivityResult is not called

2012-04-26 Thread Casvah
OK! I solved my problem. Teaches me to code when tired. I was simply missing a .show() after my toast. :( On Thursday, April 26, 2012 6:21:03 PM UTC-5, Casvah wrote: > > Ok, I'll verify I have the current version of the compatibility library. > If it is fixed, what would cause my fragment's onAc

Re: [android-developers] systemUiVisibility is a global flag across apps?

2012-04-26 Thread Mark Murphy
On Thu, Apr 26, 2012 at 8:07 PM, Agus wrote: > I am wondering if systemUiVisibility flag set via setSystemUiVisibility is a > global flag across apps? No. You only affect your app with that flag. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commons

[android-developers] Re: BroadcastReceiver Spawning New Process onReceive

2012-04-26 Thread beachboy
I think the problem I was having is a known Android bug where sometimes a Service onCreate is called but no corresponding onStartCommand is called. The net is if a service is killed in a low memory situation and even though you return START_STICKY in onStartCommand only the onCreate is called and n

[android-developers] systemUiVisibility is a global flag across apps?

2012-04-26 Thread Agus
Hi, I am wondering if systemUiVisibility flag set via setSystemUiVisibility is a global flag across apps? -Agus. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To u

Re: [android-developers] Fragment.onActivityResult is not called

2012-04-26 Thread Casvah
Ok, I'll verify I have the current version of the compatibility library. If it is fixed, what would cause my fragment's onActivityResult callback method to never be called? On Thursday, April 26, 2012 4:42:41 AM UTC-5, Kostya Vasilyev wrote: > > The bug is in the compatibility library, not the p

[android-developers] MediaPlayer Prepare failed: status=0x1

2012-04-26 Thread SH
Hi Android geeks. I am having a practice writing a little audio player. The app connect to http server to download mp3 files(not audio streaming). After downloading, it player the file using mediaplayer. But I tried to play it, error like title happens. Below is some pieces of my code: public c

[android-developers] Re: Handling remote control buttons

2012-04-26 Thread Jeremy Villalobos
Thanks, that certainly resolves hours of trying to resolve this issue. I had used singleTask in the past, but I discovered that singleTask ignores incoming Intents when the application is started by other activities. I have since resolve that problem by having a head-less activity be the desi

Re: [android-developers] Remove ringtones from ringtones list

2012-04-26 Thread Karim Varela
Hey Henrique, Did you ever find a solution to this problem? We're experiencing the same problem in our app. -Karim On Monday, February 28, 2011 9:42:24 AM UTC-8, h3nr1ke wrote: > > Hello people... ^^V > > I have an app that include some sounds in the ringtones list > > the sounds are saved in

[android-developers] Re: Handling remote control buttons

2012-04-26 Thread lbendlin
set your main activity to android:launchMode="singleTask" android:alwaysRetainTaskState="true" and all your other activities to android:noHistory="true" (if applicable) On Thursday, April 26, 2012 4:09:25 AM UTC-4, Jeremy Villalobos wrote: > > Hello: > > I followed the advice from this blog to

Re: [android-developers] Non-square pixels

2012-04-26 Thread Dianne Hackborn
No, Android fundamentally has no current support for non-square pixels. On Wed, Apr 25, 2012 at 5:23 AM, SytheZN wrote: > I realise this may have been asked before, but I'm struggling to find any > relevant information. > > First things first, I've got a cheapy tablet (Zenithink C7). > > The dis

Re: [android-developers] http://developer.android.com/reference/android/view/package-summary.html

2012-04-26 Thread Justin Anderson
Umm... ok Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Thu, Apr 26, 2012 at 3:03 PM, heshoots67 Zuber wrote: > http://developer.android.com/reference/android/view/package-summary.html > > -- > You received this message because you are subscribed to t

[android-developers] http://developer.android.com/reference/android/view/package-summary.html

2012-04-26 Thread heshoots67 Zuber
http://developer.android.com/reference/android/view/package-summary.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 unsubscribe from this group, send email to

[android-developers] Freeze view during updates

2012-04-26 Thread rael_yoni
Hey, I've a view that gets updated in code. Is there a way in Android to freeze the screen so all the changes will be rendered off screen? so that the user will see only the end results? (and it won't flicker) In .net there is the Suspend/Resume Layout pattern http://msdn.microsoft.com/en-us/l

[android-developers] Re: Selling paid apps at Google Play

2012-04-26 Thread Jose_GD
Certainly this is not the right list for the question, but where to post questions about publishing Android apps? There was a Google group for the Market, but since the rebranding as Google Play I'm lost at this. Cheers, José El jueves, 26 de abril de 2012 12:09:10 UTC-3, barrett escribió:

Re: [android-developers] Set Ringtone

2012-04-26 Thread jadranko bodiroga
Thanks people,i succes in setting ringtone... thanks for sharing ideas On Apr 24, 2012 8:07 PM, "Justin Anderson" wrote: > You may also want to use the assets folder: > > https://www.google.com/search?btnG=1&pws=0&q=android+move+file+from+assets+to+phone > > Thanks, > Justin Anderson > MagouyaWa

Re: [android-developers] Unable to relayout when dialog shown with ICS

2012-04-26 Thread Gicci
Because I need to set the size of this view to a square inside the scrollview. I get the width at runtime and then set the height accordingly. By the way I have found a workaround. To have the resize-and-relayout to happen in 4.0.3 if there is a dialog on top of the main window, it seems that t

[android-developers] Re: EGL context with sharegroups

2012-04-26 Thread F.Stain
Up! To show the problem, i made a small example. It's placed on github, link is here : https://github.com/FrankStain/com.multicontext.test Use 'USE_MULTICONTEXT' to determinate, single context must be used in application or multiple shared contexts and separate thread for data loading. I hope

Re: [android-developers] Re: How to change default HIPRI connection expiry?

2012-04-26 Thread Robert Greenwalt
If you are making your own system image you can set the expiration timeout (or turn it off) through config.xml settings. If you are not making a new system image you cannot adjust the expiration timeout. R On Wed, Apr 25, 2012 at 2:28 AM, Med Chakib wrote: > Hello all, > I'm currently working o

[android-developers] New Android Dev Team

2012-04-26 Thread Jerrick Davis
The Private Dev Team a prominent iOS developer team is expanding to android development anyone who is interested in the slightest or wants details email me at lamabo...@gmail.com -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to

Re: [android-developers] Re: Total Available memory for Memory Management logic.

2012-04-26 Thread Dallas Gutauckis
The Android developer site also explains why SoftReference and WeakReference are no longer a good solution. It also goes into detail on how to developer a good solution: http://developer.android.com/training/displaying-bitmaps/cache-bitmap.html "In the past, a popular memory cache implementation w

Re: [android-developers] how to lunch skype or gtalk video call from our application

2012-04-26 Thread Rajesh sah
thanks for your help. On Thu, Apr 26, 2012 at 8:25 PM, Justin Anderson wrote: > I don't know much about *"lunching"* skype or gtalk... but if you are > wanting to *"launch"* them, then that is another story... > > http://lmgtfy.com/?q=android+launch+skype+intent > http://lmgtfy.com/?q=android+lau

Re: [android-developers] Screen lock problem

2012-04-26 Thread Jim Graham
On Thu, Apr 26, 2012 at 10:34:12AM -0600, Justin Anderson wrote: > I don't think he is a developer... I think he is just a user having a > problem with his phone. In which case, it is most likely a problem with > one of the 3rd party apps he has installed. I decided to give him the benefit of th

Re: [android-developers] Screen lock problem

2012-04-26 Thread Justin Anderson
And the question doesn't belong on this list... Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Thu, Apr 26, 2012 at 10:34 AM, Justin Anderson wrote: > I don't think he is a developer... I think he is just a user having a > problem with his phone. In

Re: [android-developers] Screen lock problem

2012-04-26 Thread Justin Anderson
I don't think he is a developer... I think he is just a user having a problem with his phone. In which case, it is most likely a problem with one of the 3rd party apps he has installed. Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Thu, Apr 26, 2012

Re: [android-developers] Screen lock problem

2012-04-26 Thread Jim Graham
On Mon, Apr 23, 2012 at 10:17:53PM -0700, Vichu wrote: > I am using Samsung Galaxy Pro B7510 with Android 2.3.6. My phone's > screen lights keeps turning on frequently even if the screen is > locked. It automatically switch on and off the screen lights. I tried > clearing my memory. There were no n

[android-developers] Re: Total Available memory for Memory Management logic.

2012-04-26 Thread bruce
I found that the soft references works when you are dealing with smaller allocations but if you deal with images, it gc()'s the reference took quick for it to be useful. There used to be some control around what thresholds are used but that isn't a good way to do it anyway. My solution was to go

Re: [android-developers] GridLayout not clipping text to column width

2012-04-26 Thread Justin Anderson
Have you tried setting an android:ellipsize attribute on the textviews? http://developer.android.com/reference/android/widget/TextView.html#attr_android:ellipsize Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Tue, Apr 24, 2012 at 6:35 AM, Barkside wro

Re: [android-developers] Android facebook sso - token ID invalid

2012-04-26 Thread Justin Anderson
Ask facebook... Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Thu, Apr 26, 2012 at 6:21 AM, HariRam wrote: > Friends, > > I am new to facebook sso, i have integrated the SSO into my application > using phonegap, this works fine in android emulator, a

Re: [android-developers] Jframe in Android UI

2012-04-26 Thread Justin Anderson
I would start with this: http://developer.android.com/guide/topics/fundamentals.html Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Wed, Apr 25, 2012 at 7:33 AM, csselo wrote: > Hi > > I am coding a board game but android is diffrent.Which class is us

Re: [android-developers] Service failing after first boot from flash

2012-04-26 Thread Justin Anderson
This should be asked on a different forum... I believe there are android porting and android firmware forums where you will get more help. This forum is for developing applications with the Android SDK. Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On M

Re: [android-developers] Generate new content i Java

2012-04-26 Thread Justin Anderson
> > As you can see, there's an Item. Let's say we have an ArrayList or > something with some (let's say 50) objects in, and we want to make one > item per object in the list > I don't understand... Are you wanting to have a scrollable list of these items? If so, this is not the way you want to do

[android-developers] Re: Selling paid apps at Google Play

2012-04-26 Thread barrett
that's an interesting question but I think you are posting to the wrong list. This list is for developers and how to build apps, your question seems more legal than technical. I would consult with a lawyer. You will probably need to have your US registered company sell apps. But, you need to e

Re: [android-developers] fragments, buttons and activities

2012-04-26 Thread Justin Anderson
http://lmgtfy.com/?q=android+fragment+example Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Tue, Apr 24, 2012 at 3:02 AM, Fausteric wrote: > > I am searching for a fragments example for my purpose. > > I have made a app which has 7 pages with icons a

Re: [android-developers] Unable to relayout when dialog shown with ICS

2012-04-26 Thread Justin Anderson
> > In my app main activity I have a View which starts with height 0, embedded > in a FrameLayout > LinearLayout > ScrollView. I set the height > programmatically with setLayoutParams() when I get the knowledge of its > width. > Why are you doing this? Thanks, Justin Anderson MagouyaWare Developer

Re: [android-developers] Does gravity work in nested LinearLayouts?

2012-04-26 Thread Justin Anderson
Have you tried the android:layout_gravity attribute? Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Thu, Apr 26, 2012 at 6:59 AM, Niels Delporte wrote: > Hi Romain Guy, > > I know this is a very old post, but still wanted to ask you something > relatin

[android-developers] Re: Unable to use ndk-gdb

2012-04-26 Thread JP
Hmm... isn't the answer in the error message? Open jni/Android.mk in your project, jump rto line 317 and use a number to represent the API level, methinks. API levels here: http://developer.android.com/guide/appendix/api-levels.html On Apr 24, 11:05 pm, Pammy wrote: > Hi, > > I am facing a prob

Re: [android-developers] how to lunch skype or gtalk video call from our application

2012-04-26 Thread Justin Anderson
I don't know much about *"lunching"* skype or gtalk... but if you are wanting to *"launch"* them, then that is another story... http://lmgtfy.com/?q=android+launch+skype+intent http://lmgtfy.com/?q=android+launch+gtalk+intent Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/s

Re: [android-developers] no searching of sd card files

2012-04-26 Thread Justin Anderson
This group is for developing android applications... Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Tue, Apr 24, 2012 at 1:04 AM, dashing sandhu wrote: > dear developer, > i am facing a little problem in android OS. i am using > gingerbread OS.The

Re: [android-developers] Android app- Requires continuous updates of current location-is not working properly

2012-04-26 Thread Kristopher Micinski
That's right... You're out of luck for this type of accuracy, why do you need it? Bear in mind that lots of firmware completely *flat out ignores* the update time interval. kris On Thu, Apr 26, 2012 at 10:26 AM, James Black wrote: > I believe you will get actual updates from GPS no faster than

Re: [android-developers] Android app- Requires continuous updates of current location-is not working properly

2012-04-26 Thread James Black
I believe you will get actual updates from GPS no faster than every second. Also, are you verifying that the new position is better than the old, in terms of accuracy? And, GPS is not terribly accurate, probably worse than +/- 25m so it will jump around. On Apr 26, 2012 9:31 AM, "Maneesh Janyavul

Re: [android-developers] Image zoom on double tap and scroll to next image if crosses view's boundary

2012-04-26 Thread Justin Anderson
http://catb.org/esr/faqs/smart-questions.html Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Wed, Apr 25, 2012 at 8:48 AM, raj wrote: > Dear All, > > > Please explain me more on the following. > I have 3 images. > 1.on double zoom the image. > 2. Prov

Re: [android-developers] drawable resolution problem

2012-04-26 Thread Justin Anderson
> > As per my assumption it should pick from drawable folder. > As per your assumption you are wrong... :-) http://developer.android.com/guide/topics/resources/providing-resources.html#BestMatch Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Thu, Apr 2

[android-developers] Custom Header of ListView like Instagram app in android not working for ListView(child) inside ListView(parent) .

2012-04-26 Thread Ashish Tiwari
Hi friends , I'm implementing custom Header of ListView like Instagram app in android . http://prsarahevans.com/wp-content/uploads/2011/06/photo.PNG I've implemented it successfully only for one ListView . I've created one more ListView(child) inside the Parent ListView .when I'm scrolling L

Re: [android-developers] Android/JVM difference in RSA decryption

2012-04-26 Thread James Black
I just see garbage in your stack trace, but are you certain the private key is pkcs8 encoded? When you test on your desktop, is that on the emulator, a java program or some other language? Also, it may not have anything to do with the android sdk, so is probably off-topic here. On Apr 26, 2012 9:

[android-developers] drawable resolution problem

2012-04-26 Thread nikki
Hi, I am having an image in my drawable and drawable-xhdpi folder. When I run the build on a hdpi device, it picks image from xhdpi folder. I am not able to understand the reason behind it. As per my assumption it should pick from drawable folder. Please help. Thanks -- You received this messa

Re: [android-developers] Alternate resources for languages with three letter codes

2012-04-26 Thread Justin Anderson
The officially supported localizations for the Android OS can be found for each API... As for the latest, Android 4.0.3, you can find them here: http://developer.android.com/sdk/android-4.0.3.html#locs Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Thu

Re: [android-developers] Open Source Software Links

2012-04-26 Thread David Olsson
How neat that you actually found your own homepage on the internet. And btw, the account is suspended (try clicking on some links). And yes, it is spam. On Tue, Apr 24, 2012 at 7:12 AM, OSS LINKS wrote: > Hi, > I just found a cool website that lists a number of open source > software. >

[android-developers] Re: Global static class versus bundles

2012-04-26 Thread Streets Of Boston
Yes, sharing data by using plain 'static' or 'global' classes and members is possible. Be careful what you keep referenced in these static or global classes/members: don't hold on to activities and such, keeping them alive/references beyond the end of their lifecycle (e.g. after an activity's

Re: [android-developers] Communication between apps

2012-04-26 Thread Mark Murphy
Read up on: -- broadcast Intents -- services (using the command pattern or using binding with AIDL) -- ContentProvider These will all be covered in any decent Android book. They are also covered (to varying degrees) in the online documentation. On Mon, Apr 23, 2012 at 2:07 PM, Peter Nijem wrote

Re: [android-developers] Re: BroadcastReceiver Spawning New Process onReceive

2012-04-26 Thread Mark Murphy
On Thu, Apr 26, 2012 at 9:29 AM, beachboy wrote: > As you can the onReceive is executing on process 2072 which is the > service process just fine until 20:52. At 20:52 new processes are > spawned and my Application onCreate is called. My service is not being > killed and restarted because I would

Re: [android-developers] how to install applet by OTA On Android phone?

2012-04-26 Thread Jeffrey Chu
You need an OTA reader and a javacard tool to install applet to an SE. To install applet to PN65N, you also need the set of keys or public key to generate an load/install token to get authorized to install. Or, a simpler answer is no, you cannot do it because the keys are not available. On Apr 24

[android-developers] Strange animation in SurfaceView

2012-04-26 Thread grimripper
I've made a simple SurfaceView animation. I first draw a stroked white rectangle, and then on the next draw, draw a black filled rectangle to hide it, using the same rectangle. Then I move the rectangle object's coordinates a bit, redraw the white rectangle and so on. Problem is, this doesn't w

[android-developers] Image zoom on double tap and scroll to next image if crosses view's boundary

2012-04-26 Thread raj
Dear All, Please explain me more on the following. I have 3 images. 1.on double zoom the image. 2. Provide scroll in the zoomed image 3.move to the next image once it crosses boundary 4.set thumnail accordingly. Thanks in advance. Raaj -- You received this message because you are subscribed t

[android-developers] NFC Detection

2012-04-26 Thread NontKub Klinkhajorn
I want my app can scan tag when it close.Example when i scan tag while my apps is cloesed when the NFC adapter detect my tag it will call my app.How ??? -- 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] The question is about CTS test

2012-04-26 Thread Bow
I am an Wondermedia engineer in Taiwan. I have a question about CTS test need you help. In android.app.cts.SystemFeaturesTest --- > testLocationFeatures have to two APK (Location services, networkloaction.apk). According to http://grokbase.com/p/gg/android-platform/1248s174ca/the-question-about

[android-developers] build my own android rom for google tv

2012-04-26 Thread אבי שרביט
i have a streamer with an android. i want to redevelop the streamer and make it as a single app that only can run on the device and it will replace the android gui. is it posible? where can i find the android google tv source? how can i upload the new android version to the streamer after i comp

[android-developers] no searching of sd card files

2012-04-26 Thread dashing sandhu
dear developer, i am facing a little problem in android OS. i am using gingerbread OS.The problem in it is that it do not search the SD card's files i.e. when i search in google search bar it only shows me the music and the applications installed but it does not show me the folders in the sd

[android-developers] Re: AsyncTask in Android 4.0

2012-04-26 Thread Michael
I have concerns of making such major changes implicitly in android. For the developers who follow this thread they are safe, what about the thousands of developers who wont be reading this thread? Any possibility of making such major changes compile failures or deprecate old api and create new api

[android-developers] Screen lock problem

2012-04-26 Thread Vichu
I am using Samsung Galaxy Pro B7510 with Android 2.3.6. My phone's screen lights keeps turning on frequently even if the screen is locked. It automatically switch on and off the screen lights. I tried clearing my memory. There were no notifications too. Tried switching off the phone many times. Wha

[android-developers] NFC detection

2012-04-26 Thread Tiyanon Klinkhajorn
Hello, I create android apps to scan NFC tag to read data in the tag but i want to run my apps when tag has detected while my app is closed.I try to use service but it don't work.How i can scan tag while I closed my app ? Thank you and sorry with my english. -- You received this message because

[android-developers] Non-square pixels

2012-04-26 Thread SytheZN
I realise this may have been asked before, but I'm struggling to find any relevant information. First things first, I've got a cheapy tablet (Zenithink C7). The display resolution is 800x480 which works out to 5:3. The physical dimensions are 154x85.5mm which gives me an approx. physical aspe

[android-developers] Android in app , credit card save issue

2012-04-26 Thread viv dub
My in app was running fine (I was testing via credit card), since few hours before, when suddenly it started throwing following error while saving credit card info. *There was an issue with our payment process [Your instrument is not valid]* Does any one has clue, to what this actually is. I

[android-developers] Global static class versus bundles

2012-04-26 Thread Tina Seaburn
I'm a Windows Phone 7 developer and I use C# as a language. In your tutorial examples there are Activities (looks like activities have a 1:1 relationship with display pages) and they are communicating with each other by passing "Bundles." I'm used to having a Global Static Class where all of the

[android-developers] List of cards working with Android Graphics Acceleration

2012-04-26 Thread tonetheman
Is there a list of cards that work with Android Graphics Acceleration? This feature looks like it is new as of SDK Tools Revision 17 but I have not been able to get it work with my card. Just hoping someone else has... Thanks! -- You received this message because you are subscribed to the G

[android-developers] Alternate resources for languages with three letter codes

2012-04-26 Thread Yuvi
While trying to add localized resources for the [Sakha language][1] in my android app, I kept getting errored out with the following message: [aapt] invalid resource directory name: /Users/yuvipanda/code/ WikipediaMobile/res/values-bho BUILD FAILED /Users/yuvipanda/adk/tools/ant/build

[android-developers] Importing csv file into SQLite Android

2012-04-26 Thread vipin sahu
I have a csv file exported from Sqlite browser that contain a table and i have placed it in sdcard . i wish i could import into my android apps data base programmatically I tried a lot but failed to achieve any help would be appreciated . I have the same tabe created in android but I dont want to d

[android-developers] how to lunch skype or gtalk video call from our application

2012-04-26 Thread Rajesh sah
I need help for lunch skype or gtalk video call from our application. thankyou for ur time and 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@googlegroups.com To unsubscribe

Re: [android-developers] RadioGroup OnClickListener

2012-04-26 Thread rakesh jha
Hi friends, for the radio group you can use oncheckchangeListener that will be most suitable to implement. On Tue, Apr 24, 2012 at 3:43 AM, Justin Anderson wrote: > So how come that RadioGroup class has a setOnClickListener but not a >> getOnClickListener? >> > It's not just RadioGroup.

[android-developers] Get Location Without Using Internet

2012-04-26 Thread Rakesh Rajput
How can i get location without using internet if that are possible in android version 2.0.1 please give me suggestion on this topic -- 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@goo

Re: [android-developers] eclipse android project change sdk version

2012-04-26 Thread Mark Murphy
On Wed, Apr 25, 2012 at 6:27 AM, fachhoch wrote: > I am a new bee trying writing simple applications using eclipse. I > tried to change the sdk version using project properties android sdk > version, but the sdk version never changes t, is this bug in > eclipse? There used to be an Eclipse bug th

[android-developers] Scale problem with canvas

2012-04-26 Thread BeEnder
hello together, i have some bitmaps in hdpi format and i want to draw these bitmaps with canvas.drawBitmap(bitmap, x, y, null) on my screen. this works fine for a 800 x 480 pixel screen resolution. if i have a bigger screen resolution (1280 x 768 pixel) or smaller screen resolution (480 × 320 pixe

[android-developers] Browsing a file

2012-04-26 Thread murali ch
Can we write code of Browsing a file from our device in android.? Please send me replies u got.! -- 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 fro

[android-developers] Is there any way to simulate reverse Portrait with api level 8?

2012-04-26 Thread nguillot
Hello, My constraints are: * portrait orientation for my activities * min sdk = API level 8. So according to http://developer.android.com/guide/topics/manifest/activity-element.html I use "portrait" for "android:screenOrientation" attribute. I also added "orientation" to "android:configChanges"

[android-developers] why I can't use nfc p2p between two android phone

2012-04-26 Thread npa...@163.com
I can't use nfc p2p between two android phone,one is a nexus S, the other is htc s715e,both sdk is 2.3.4. below is my code! IS anyone can give me some help, thanks! public class MyNFCDemoP2PActivity extends Activity { private NfcAdapter mNfcAdapter; private TextView mInfoText;

[android-developers] Android app- Requires continuous updates of current location-is not working properly

2012-04-26 Thread Maneesh Janyavula
I am developing an Android app, which routes the user from current location to a Parking spot(some random location) as the user moves on the road. I am using GPS_PROVIDER to get the current location. locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 500,0,locationListener); I a

[android-developers] Start default music player with music playing by default

2012-04-26 Thread Sarvesh Syal
am developing an application where I need to start the default music app and play all the songs. I have tried a number of codes but nothing seems to work. Intent LaunchIntent = getPackageManager().getLaunchIntentForPackage("com.android.music.MediaPlaybackActivityStarter"); startActivity( LaunchI

Re: [android-developers] [android developers] how to use a viewpager in a fragment?

2012-04-26 Thread Naveen Gunda
*what kind of problems u have got* * * *Regards,* * * *Naveen.G* * * *91-9700637375* -- 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, se

Re: [android-developers] [android developers] how to use a viewpager in a fragment?

2012-04-26 Thread Naveen Gunda
> > russel send to me project archive naveengun...@gmail.com > -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-de

Re: [android-developers] Issues to add native service to ICS

2012-04-26 Thread Zhentao Qu
hi, don't too care about this you could comment it or add a else condition because it's a origin google setting, but odm will develop some new so or apk will not to add to a list that android origin variable setting On Wed, Apr 25, 2012 at 3:37 AM, fan zhang wrote: > Hi: > > > > > > I need to

[android-developers] Unable to use ndk-gdb

2012-04-26 Thread Pammy
Hi, I am facing a problem on android native code debugging, I am new user to android and trying to build an application in opengles 2.0 which coded in C/C++. At present I am not able to use the ndk-gdb. I have made all prerequisite of ndk-gdb but still not able to debug the application. For sake

[android-developers] Re: How to change default HIPRI connection expiry?

2012-04-26 Thread Med Chakib
Hello all, I'm currently working on a project that need a data connexion to be active while I'm connected on WIFI. Your solution seems to be exactly what I need. Did you find a way to extend the duration of your HIPRI connection ? Med On Mar 23, 10:01 pm, San wrote: > Hey flumby, > > Did you get

[android-developers] Re: RelativeLayout layout_alignParentRight changes parent

2012-04-26 Thread pnemonic
in RelativeLayout.java we find private void applyHorizontalSizeRules(LayoutParams childParams, int myWidth) { ... if (0 != rules[ALIGN_PARENT_RIGHT]) { if (myWidth >= 0) { childParams.mRight = myWidth - mPaddingRight - childParams.rightMargin; } else

[android-developers] Selling paid apps at Google Play

2012-04-26 Thread Narek Gevorgyan
Hi, I am going to sign up for a developer account but I have one question, Can I sell apps from the name of my company which is registered at US Delaware state but I am an Armenian citizen and my residency is in Armenia. As I am from Armenia I can't sell paid apps, but can I do that via my US LLC,

  1   2   >