[android-developers] Immediate Opening for Android Developer @ CA

2019-09-17 Thread Anand KK
Hi Friends , Please find the Job Description and Kindly share your Resume - aa...@sakintech.com Location : San Francisco,CA. We are looking for an Android Developer with Java Background who possesses a passion for pushing mobile technologies to the limits. This Android app developer

[android-developers] Android Pinch zoom not working over imageview inside gesture overlayview

2014-04-17 Thread KK
I am doing the following in my application. 1) Display a image in a activity. 2) Recognize gesture over that image. 3) And also doing pinch and zoom over the same image. The layout I have created is given below. *?xml version=1.0 encoding=utf-8?* *FrameLayout

[android-developers] SoftKeyboard - not showing the auto suggest

2014-04-09 Thread KK
I am going to do an android application. In that app, I have to add the customized keyboard. So that I am trying to create my own customized keyboard. I found the code for the keyboard from the android sdk's sample(SoftKeyboard). When I execute the code, the keyboard is installed and showing in

Re: [android-developers] how to flip the page similar to what Flipboard app does

2012-07-18 Thread KK
Thanks Harri, I'll check it out. --KK On Mon, Jul 16, 2012 at 1:57 PM, Harri Smått har...@gmail.com wrote: I played around with the idea - and this mockup works more/less properly. Nothing too fancy but guess it would be possible to extend it for more generalized usage. https://github.com

[android-developers] how to flip the page similar to what Flipboard app does

2012-07-16 Thread KK
in advance! Regards, KK -- 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+unsubscr...@googlegroups.com For more

[android-developers] android program to access the remote desktop

2012-02-28 Thread vasudevan kk
Hi, I want to create a andriod program for accessing remote desktopi am a beginner in andriod development. can you help me and give me the instructions. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Android program to access the remote desktop

2012-02-28 Thread vasudevan kk
Hi all, I want to create a application for accessing the remote desktop.. please help me, and give a sample program to connect remote desktop using android..give the instructions -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] How to get Hardware and software information of remote computer in android

2012-01-23 Thread kk
I want to get Hardware and software information of remote computer which is already in my WiFi network.I found that Windows Management Instrumentation (WMI) is useful for getting this information in java.But when I use this for android I got runtime errors in com4j.jar. I can't solve these

[android-developers] Re: Using multiple listview inside one activity, how to give focus to each

2012-01-11 Thread KK
hi All, Has anyone any idea on this issue? Please help me out. Appreciate your effort and time. Thanks, KK On Mon, Dec 26, 2011 at 1:13 AM, KK dioxide.softw...@gmail.com wrote: hi All, I'm using multiple listViews inside one activity. I'm using each listiview in its own UI screen layout

[android-developers] Google App Engine and Users API and android By Nikolay Elenkov - 8:38am - 3 authors - 9 replies

2012-01-08 Thread kk
Hi! I am developing Live Wallpaper for Android and stumbled upon scrolling wallpaper issue. We have onOffsetsChanged(..) function with xPixelOffset argument. Question is, what is the maximum value of xPixelOffset value and is it documented somewhere? Many people considered it to be (screen width *

[android-developers] how to select listview from multiple listviews in main.xml (on Android 2.3.3)

2011-12-25 Thread KK
trying to animate between two UI screens each using one layout and the default behavior gives only one of the listivew as picked by getListView() which happens to be the 1st one, so my 2nd UI page is not showing any listview. Thanks, KK -- You received this message because you are subscribed

Re: [android-developers] how to select listview from multiple listviews in main.xml (on Android 2.3.3)

2011-12-25 Thread KK
Changing ListActivity to just Activity worked like a charm. You are a life saver. Thanks a lot. Thanks, KK On Sun, Dec 25, 2011 at 3:10 PM, YuviDroid yuvidr...@gmail.com wrote: Hi, I believe you are using a ListActivity, which by default looks for a ListView with id @android:id/list. To use

[android-developers] Using multiple listview inside one activity, how to give focus to each

2011-12-25 Thread KK
android:layout_width=fill_parent android:layout_height=fill_parent / /LinearLayout /FrameLayout Appreciate your time. Thanks, KK -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Does the mediaplayer keep running even in orientation change ?

2011-11-29 Thread KK
any such lag during orientation changes, it just plays smoothly. Appreciate your time. Thanks, KK -- 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

Re: [android-developers] Trying to exit app( using finish() ) gives ANR on device but not on emulator

2011-11-26 Thread KK
!= mMediaPlayer mMediaPlayer.getCurrentPosition() mMediaPlayer.getDuration())* * * something is wrong here but surprisingly this is working fine on emulator without any such error, any idea how is that possible? Thanks for your help. Regards, KK On Sat, Nov 26, 2011 at 1:21 PM, Raghav Sood raghavs

Re: [android-developers] Trying to exit app( using finish() ) gives ANR on device but not on emulator

2011-11-26 Thread KK
hi Pskink, That actually worked, I moved the timer.cancel() before releasing the mediaplayer. But what is the logical reasoning behind this, would you mind explaining in a word or two? or may be point me to any web reference that explains the thing. Thanks in advance. Regards, KK On Sat, Nov 26

[android-developers] How to use PendingIntent to open existing activity and not a new one

2011-11-26 Thread KK
running activity instead of opening a new one? Please let me know whats going wrong in the above code. Appreciate your time. Thanks, KK -- 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: [android-developers] How to use PendingIntent to open existing activity and not a new one

2011-11-26 Thread KK
. Regards, KK On Sat, Nov 26, 2011 at 5:25 PM, Mark Murphy mmur...@commonsware.comwrote: Add either FLAG_ACTIVITY_REORDER_TO_FRONT or the combination of FLAG_ACTIVITY_SINGLE_TOP and FLAG_ACTIVITY_CLEAR_TOP as flags to your Intent. The latter finishes all other activities that might be on your

Re: [android-developers] How to use PendingIntent to open existing activity and not a new one

2011-11-26 Thread KK
Thank you very much Mark. I used both the flags in OR and it worked. I should have tried it as per your last hint. Thanks again. Regards, KK On Sat, Nov 26, 2011 at 6:12 PM, Mark Murphy mmur...@commonsware.comwrote: The only times I've done this with Notifications, I have used

[android-developers] ListView text goes black when scrolling the content

2011-11-25 Thread KK
android:layout_marginBottom=15dp /SeekBar /LinearLayout snippet--- Appreciate your time. Thanks. Regards, KK -- 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] ListView text goes black when scrolling the content

2011-11-25 Thread KK
It really solved the problem. You are a lifesaver. Thank you very much. Regards, KK On Fri, Nov 25, 2011 at 5:05 PM, Mukesh Srivastav mukicha...@gmail.comwrote: Hi KK, Please add the following line to your listview, The problem get solves. android:cacheColorHint=# Warm Regards

[android-developers] Trying to exit app( using finish() ) gives ANR on device but not on emulator

2011-11-25 Thread KK
(); timer.cancel(); finish(); return true; ---code snippet- Just a note that I'm using notifications to show current song being played, using Timer for continuously updating the seekbar for the current song being played. Appreciate your time. Many thanks. Regards, KK -- You received this message

[android-developers] does android.media.Mediaplayer support asf stream playing ?

2011-11-09 Thread KK
asf stream media similar to other formats like shoutcast mp3 etc. Also, it would be helpful if someone can point me to the proper URL/tutorial for playing asf streams. Actually I'm trying to write a small app that plays couple of stream media formats. Appreciate your time. Thanks, KK -- You

[android-developers] Can we use a scrollview inside linear layout?

2011-11-06 Thread KK
my end result by some other elegant approach. Thanks in advance. Regards, KK -- 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

Re: [android-developers] Can we use a scrollview inside linear layout?

2011-11-06 Thread KK
case if the no of items is say 50 then they will automatically be scrollable, right? Please rectify if I'm wrong. Thanks, kk On Mon, Nov 7, 2011 at 12:25 AM, Dianne Hackborn hack...@android.comwrote: Yes, you can, but you really should use a ListView instead of a ScrollView if you have a lot

[android-developers] Screen Orientation changes automatically in 2.2 emulator

2011-10-31 Thread KK
chunk Thanks, KK -- 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+unsubscr...@googlegroups.com For more

[android-developers] how to make the Notification message move/scroll right to left(or vice versa)

2011-10-25 Thread KK
, I want to make it scroll so that the enduser can see the full text being displayed through notification. Thanks for your time. Regards, KK -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android

Re: [android-developers] Re: how to make the Notification message move/scroll right to left(or vice versa)

2011-10-25 Thread KK
Hi Vasvari, Thanks for your answer. I got the point that we've to use custom layout, but dont know how do I hookup the custom layout to the notification event, would appreciate if you can point me to some sample code. Thanks, KK On Tue, Oct 25, 2011 at 2:15 PM, Zsolt Vasvari zvasv...@gmail.com

Re: [android-developers] Re: how to make the Notification message move/scroll right to left(or vice versa)

2011-10-25 Thread KK
Just to add one more info, that I'm running this app on API 8/Android 2.2 Thanks, KK On Tue, Oct 25, 2011 at 2:34 PM, KK dioxide.softw...@gmail.com wrote: Hi Vasvari, Thanks for your answer. I got the point that we've to use custom layout, but dont know how do I hookup the custom layout

Re: [android-developers] Re: how to make the Notification message move/scroll right to left(or vice versa)

2011-10-25 Thread KK
thanks, got it. let me add the url for others reference http://developer.android.com/guide/topics/ui/notifiers/notifications.html#CustomExpandedView --kk On Tue, Oct 25, 2011 at 2:38 PM, Zsolt Vasvari zvasv...@gmail.com wrote: I don't have any sample code. That's what the Android Samples

Re: [android-developers] Re: how to make the Notification message move/scroll right to left(or vice versa)

2011-10-25 Thread KK
android:layout_width=wrap_content android:layout_height=wrap_content android:layout_toRightOf=@id/image android:layout_below=@id/title / /RelativeLayout Thanks for your time. KK On Tue, Oct 25, 2011 at 3:12 PM, KK dioxide.softw...@gmail.com wrote: thanks, got it. let me

[android-developers] How to add custom TTS(text to speech) engines for unsupported Languages

2011-10-25 Thread KK
suggestion to achieve the same result is more than welcome. Thanks, KK -- 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

[android-developers] How to play .asx streams in Android ?

2011-10-22 Thread KK
Hi All, Just wondering, is there any way we can play .asx streams on Android. I was searching on google, but could not find any positive answers over there. Is there any third party utility through which we can play this kind of streams on android phones? Appreciate your time. Thanks, KK

[android-developers] Re: How to pull information like current song, user-count etc from shoutcast URL in Android

2011-10-20 Thread KK
Hi All, Found something useful, let me try this and will post how well it goes. For others reference, this is the URL: http://code.google.com/p/streamscraper/ --KK On Tue, Oct 18, 2011 at 11:33 PM, KK dioxide.softw...@gmail.com wrote: Hi All, I'm not sure if my question fully belongs

[android-developers] Re: How to pull information like current song, user-count etc from shoutcast URL in Android

2011-10-20 Thread KK
-metadata-plain-java/ Hope someone will find this useful. Thanks, KK On Thu, Oct 20, 2011 at 10:23 PM, KK dioxide.softw...@gmail.com wrote: Hi All, Found something useful, let me try this and will post how well it goes. For others reference, this is the URL: http://code.google.com/p

[android-developers] How to pull information like current song, user-count etc from shoutcast URL in Android

2011-10-18 Thread KK
simple API calls, say with the shoutcast URL and provides the basic information like: current song, stream speed say in kbps, listening user count etc. Any help would be highly appreciated. Thanks for your time. --KK -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] Re: Android source code not available at official site

2011-10-15 Thread KK
Any mirrors for Android source ? Thanks in advance. --KK On Sat, Oct 15, 2011 at 7:40 AM, Chris crehb...@gmail.com wrote: Because open source is here for your amusement.. Trade you my copy of froyo for your copy of honeycomb? Oh, wait -- You received this message because you

[android-developers] Android source code not available at official site

2011-10-13 Thread KK
manually at @ https://android.git.kernel.org/repo but the page is not available. Is there any alternative for the same. Would appreciate if someone can point me in the right direction to get the (latest)android source code. Thanks a ton. --KK -- You received this message because you are subscribed

Re: [android-developers] In AutoCompleteVeiw calling setAdapter() and setThreshod() gives error

2011-10-07 Thread KK
Thanks Kostya... 2011/10/7 Kostya Vasilyev kmans...@gmail.com The compiler is right - your curly braces are not matching up. The code you highlighted should be inside onCreate, not like it is now. -- Kostya Vasilyev 07.10.2011 9:04 пользователь KK dioxide.softw...@gmail.com написал

Re: [android-developers] ListView Row not firing the click event

2011-10-06 Thread KK
What exactly is the error message you are getting? --KK On Thu, Oct 6, 2011 at 3:46 PM, Naveen kumarnaveen.si...@gmail.com wrote: i am using custom list , it's l1.setAdapter(new EfficientAdapter(this)); l1.setFocusable(true); l1.setClickable(true); l1

[android-developers] Re: OnCheckedChangeListener not working on RadioGroup

2011-10-06 Thread KK
Would appreciate if someone could explicitly mention what exactly is the fix for this error. As, I don't see any mention of compoundbutton and the user has correctly used RadioGroup.OnCheckedChangeListener I'm stuck at the same point. Thanks On Aug 12, 3:58 pm, Mark Murphy

Re: [android-developers] Re: OnCheckedChangeListener not working on RadioGroup

2011-10-06 Thread KK
); rdGroup.setOnCheckedChangeListener(*new RadioGroup.OnCheckedChangeListener() * { @Override public void onCheckedChanged(RadioGroup group, int checkedId) { // TODO Auto-generated method stub } }); Thanks to all of you. --KK On Thu, Oct 6, 2011 at 8:54 PM, KK dioxide.softw...@gmail.com wrote: Would appreciate

[android-developers] In AutoCompleteVeiw calling setAdapter() and setThreshod() gives error

2011-10-06 Thread KK
* * android:text=AutoCompleteTextView* * requestFocus/requestFocus* * /AutoCompleteTextView* */LinearLayout* Would appreciate if someone can point me what is wrong here or how to fix the error and make the code work. Thanks, KK -- You received this message because you are subscribed to the Google

[android-developers] Trying to play around with ContentResolver, but stuck with weird issue

2011-10-01 Thread KK
--- Thanks in advance. Thanks, KK -- 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] Trying to play around with ContentResolver, but stuck with weird issue

2011-10-01 Thread KK
Hi Kostya, Thank you very much, You're a life saver ! Thanks, KK On Sat, Oct 1, 2011 at 8:59 PM, Kostya Vasilyev kmans...@gmail.com wrote: Take out this: 01.10.2011 19:26, KK пишет: import android.R; Then press Ctrl+Shift+O to resolve imports, and choose your project's R file

Re: [android-developers] Re: How to capture sensor moves using SensorSimulator

2011-09-29 Thread KK
, KK On Thu, Sep 29, 2011 at 10:46 PM, ColorTheorist colortheorydevelo...@gmail.com wrote: You'll have to use the sensormanager class and use thresholds as you have mentioned at the lowest level by subscribing to the accelerometer. From there you should be able to do what you want

[android-developers] How to capture sensor moves using SensorSimulator

2011-09-28 Thread KK
process, if someone wants to tune the threshold value. Would appreciate if someone can throw some light on this. Thanks, KK -- 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

[android-developers] how to play streaming media on android

2011-09-27 Thread KK
pointers would be highly appreciated. Thanks, KK -- 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+unsubscr

Re: [android-developers] Re: how to play streaming media on android

2011-09-27 Thread KK
Thanks Mort. Please let me know if you have some web links about the ShoutCast support. I'll also check it in google. Thanks, KK On Tue, Sep 27, 2011 at 6:40 PM, mort m...@sto-helit.de wrote: If your device isn't too buggy to do it (which isn't that rare...), simply pass the URL instead

[android-developers] how to play media files(mp3) with some missing metadata

2011-09-27 Thread KK
using are the ones commonly available on the web and might be missing the metadata. Any help would be appreciated. Thanks, KK -- 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

[android-developers] Re: how to play media files(mp3) with some missing metadata

2011-09-27 Thread KK
if someone can point me in the right direction. Thanks, KK On Tue, Sep 27, 2011 at 9:47 PM, KK dioxide.softw...@gmail.com wrote: Hi All, As part of my basic mp3 player, I'm using the inbuilt media player to play songs. The problem I'm facing is that, though I'm able to get TITLE but during

[android-developers] how to recursively search for media(mp3) files in sdcard

2011-09-26 Thread KK
in a efficient wayy. Would appreciate if someone could help me getting this. Any working example for the same would be very helpful. Thank you. KK -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android

Re: [android-developers] how to recursively search for media(mp3) files in sdcard

2011-09-26 Thread KK
code. Thanks, KK On Tue, Sep 27, 2011 at 12:19 AM, Mark Murphy mmur...@commonsware.comwrote: On Mon, Sep 26, 2011 at 2:44 PM, KK dioxide.softw...@gmail.com wrote: I'm trying to write some simple method to recursively crawl the sdcard in all foders and create a list of all mp3 files, which I

Re: [android-developers] Re: Creating PNG images for app startup, background etc

2011-09-26 Thread KK
Hi Oli, Can you elaborate a bit on how to get a PNG exported from a scene or how to convert some image say in JPEG format to PNG and then put that in proper dimension and size. Can you point us to some tutorial links? Thanks in advance. Thanks, KK On Mon, Sep 26, 2011 at 2:35 PM, Oli oli.wri

Re: [android-developers] Re: Creating PNG images for app startup, background etc

2011-09-26 Thread KK
Hi Chris, Thanks for the links. I'm going to spend some time learning more about using GIMP utility to help me creating basic splash images, background images etc. Thanks, KK On Tue, Sep 27, 2011 at 8:44 AM, Chris crehb...@gmail.com wrote: On Sunday, September 25, 2011 8:32:50 AM UTC-4, KK

[android-developers] Creating PNG images for app startup, background etc

2011-09-25 Thread KK
only with 320x480 size) from the web but it dint' work, it me errors saying not a PNG image, wrong format etc.. Any help would be appreciated. Thanks, kk -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

Re: [android-developers] Re: How to use SensorSimulator @ http://code.google.com/p/openintents/wiki/SensorSimulator

2011-09-25 Thread KK
Hi Adam, Thanks for the quick help. You are right, once I changed the mSensorManager to be an instance of SensorManagerSimulator, it worked like a charm. Thank you. --KK On Sun, Sep 25, 2011 at 7:16 PM, Adam Ratana adam.rat...@gmail.com wrote: It's been a long time since I've used

[android-developers] How to use SensorSimulator @ http://code.google.com/p/openintents/wiki/SensorSimulator

2011-09-24 Thread KK
someone help me how to fix these errors and use the SensorSimulator to simulates movements/shakes etc. Thanks in advance. --KK -- 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

[android-developers] how to show numbers before each string in ListView

2011-09-22 Thread KK
the same effect. Any help would be highly appreciated. Thanks, KK -- 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

[android-developers] How does Android EditText store the content internally

2011-08-27 Thread KK
String), in which case there might still be a way for a hacker to get the password out? Thanks KK -- 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] Button in Custom Preference gets enabled automatically

2011-08-25 Thread KK
I have a custom preference in my application which consists of a textview and a button and it is put in a preference screen. I load the layout in the onCreateView of the preference LayoutInflater inflater = (LayoutInflater)getContext(). getSystemService(Context.LAYOUT_INFLATER_SERVICE);

[android-developers] How does android decide to cache a process?

2011-08-04 Thread KK
In Gingerbread Settings-Applications-MyApplications, the Running tab has been divided into two. Running Services and Cached Background Process. So how and when does Android decide to cache a process? Mainly is there anything my app can do to tell the system to never cache my process? Thanks KK

[android-developers] Rendering 24 bit RGB using Android Bitmap

2010-12-09 Thread KK
Hi, Is there anyway I can render a 24 bit RGB using Android Bitmap class? The Bitmap.Config does not seem to have a 24 bit option. Is there anyway to do this? Thanks in advance KK -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] ServerManagedPolicy not working as expected - getting many This app is not licensed responses.

2010-11-22 Thread kk
something? Do I need to tweak any settings regarding the caching? I'm playing the game - all is fine. 5 minutes later I'm somewhere without a signal and I get the App is not licensed dialog. How soon does the caching expire? cheers, kk. -- You received this message because you are subscribed

[android-developers] Can I stop background apps from causing GC and eating up CPU?

2010-11-17 Thread kk
updates, email updates, texts, etc. Is there an interface that will let me control what is active in the background and what should be suspended? cheers, kk. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Re: Game performance degrading over time - any ideas?

2010-11-17 Thread kk
George, Is it meant to alloc every time you call it then? That's going to cause GC to collect at random times during my game :( cheers, kk On Nov 15, 4:40 pm, george barber finchbar...@gmail.com wrote: no your not using it wrong On Mon, Nov 15, 2010 at 4:37 PM, kk kkostia...@gmail.com

[android-developers] Re: Game performance degrading over time - any ideas?

2010-11-16 Thread kk
it passing p_bbox directly as well (i.e. the rect version of setBounds) and it makes no difference. How can I prevent the allocation there? Thank you in advance, kk. On Nov 15, 8:37 pm, kk kkostia...@gmail.com wrote: Top stuff Kostya/Dianne. Thank you for the feedback. I think before I look into anything

[android-developers] Re: Game performance degrading over time - any ideas?

2010-11-15 Thread kk
to be increasing with time. I'll try profiling as suggested by Dianne but this is very weird and is holding up my release :( cheers, kk. On Nov 15, 1:59 am, DanH danhi...@ieee.org wrote: My guess is that you have a slow memory leak, and GC is taking more and more time (and happening more

[android-developers] Re: Game performance degrading over time - any ideas?

2010-11-15 Thread kk
a StringBuilder with a new String? I render by doing: myCanvas.drawText(m_healthString, ...); // this is using the char[] version, which is good Obviously I will look into a custom version of Integer.toString, which will eliminate quite a lot of the allocations in there. cheers, kk. On Nov 15

[android-developers] Re: Game performance degrading over time - any ideas?

2010-11-15 Thread kk
of the values do change quite frequently. I'll report back if I'm still having issues after I do this. Thanx again, kk. On Nov 15, 7:31 pm, Kostya Vasilyev kmans...@gmail.com wrote: What I was suggesting was, rather than using Integer.toString(), or any other String / StringBulider methods, format

[android-developers] Game performance degrading over time - any ideas?

2010-11-14 Thread kk
:)): + Why is performance degrading with time? What could be causing this? + Is there a way to avoid allocs due to Integer.toString and Drawable.setBounds calls? Thank you in advance, kk. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Re: Game performance degrading over time - any ideas?

2010-11-14 Thread kk
files, say one for the first half and one for the second half of the game and compare the results? Sounds like a good plan - I just have no clue as to what could be causing this degredation :( cheers, kk. On Nov 14, 9:14 pm, Dianne Hackborn hack...@android.com wrote: Have you tried running

[android-developers] Understanding DDMS allocations - stopping the GC from working overtime!

2010-11-07 Thread kk
(myValue); I'm guessing all of the above is the reason my GC is working overtime! Are there better ways (using canvas) to manipulate and render text/ numbers on screen? cheers, kk. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] stopping the GC from kicking in

2010-10-19 Thread kk
is causing the GC to kick in... cheers, kk. -- 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+unsubscr

[android-developers] Problem opening page with javascript pop ups in webview

2010-09-27 Thread KK
in a WebView. I have implemented my WebViewClient and overridden the shouldOverrideUrlLoading. I am getting the call to shouldOverrideUrlLoading whenever I click on A, but not getting it when I click on B or C? Can someone help me as to why this is happeneing? Thanks KK -- You received this message

[android-developers] Re: Problem opening page with javascript pop ups in webview

2010-09-27 Thread KK
) means to block the popup. On Mon, Sep 27, 2010 at 6:07 AM, KK krishnakumar.ramachand...@gmail.com wrote: I am very new to both android webkit and javascript. I have a web page with 3 links (say A,B,C). When I open that page on my PC browser(Chrome), and click on the links, A opens

[android-developers] Re: Problem opening page with javascript pop ups in webview

2010-09-27 Thread KK
I went through the page source and it looks like the 2 links that are not supported are opened as IFRAMEs. are IFRAMEs supported by WebView? On Sep 27, 5:08 pm, KK krishnakumar.ramachand...@gmail.com wrote: I tried that.. onCreateWindow of WebChromeClient does not seem to get called. On Sep

[android-developers] Re: MediaPlayer showstopper bug - please help

2010-09-23 Thread kk
. Thanks again for the response. cheers, kk. On 23 Sep, 16:44, Jason jason.poli...@gmail.com wrote: Wow.. that IS weird. I'm not sure what the problem is here, but there are a couple of things I do differently: 1. Don't use MP3.  Apparently the MP3 decoder on Android is a bit crufty.  I

[android-developers] MediaPlayer showstopper bug - please help

2010-09-22 Thread kk
) { e.printStackTrace(); m_mediaPlayer = null; return false; } return true; = cheers, kk. -- 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] media player not looping properly

2010-08-09 Thread kk
. when things are good to go), I call MEDIA_PLAYER.start(); Can you guys see anything wrong with the above? Any ideas what could be causing this? All help greatly appreciated. cheers, kk. -- You received this message because you are subscribed to the Google Groups Android Developers group

[android-developers] adding audio to a game - triggerClip for SFX

2010-07-30 Thread kk
Hi all, I'm using JetPlayer in order to add some audio to a game I'm developing. Using the examples in JetBoy I have managed to create a .jet file using JetCreator and play an audio track. So far so good. However, I'm having some trouble playing sound effects for my game. I have a set of very

[android-developers] Re: adding audio to a game - triggerClip for SFX

2010-07-30 Thread kk
wrote: triggerClip() was designed to play synchronized sound effects for musical games like JetBoy. If you just want to play random sound effects, I would use SoundPool instead. On Jul 30, 5:53 am, kk kkostia...@gmail.com wrote: Hi all, I'm using JetPlayer in order to add some audio

[android-developers] Re: GLSurfaceView onPause blocked in Froyo

2010-05-28 Thread KK
a renderer has been set. If i don't call this the OpenGL rendering thread will keep on giving the onDrawFrame calls. regards KK On May 26, 11:06 pm, Indicator Veritatis mej1...@yahoo.com wrote: The first thing that pops out as odd, possibly related to your problem, is that as you describe it, you

[android-developers] GLSurfaceView onPause blocked in Froyo

2010-05-26 Thread KK
I am using OpenGL to do some rendering and whenever my rendering gets paused I call onPause of GLSurfaceView and later when I resume onResume of GLSurfaceView. This was working fine till I upgraded my Nexus One to Froyo today. After that the thread calling onPause seems to be blocked in that API.

[android-developers] Emulator Proxy Settings via APN not working

2010-05-20 Thread kk
Hi All, Can't get Froyo (Android SDK 2.2 release) APN emulator proxy settings working. Via eclair proxy settings work enable via APN configuration (adding proxy server and proxy server port). Now in FroYo release this manner of configuration is not working, any workarounds? Rgds, KK -- You

[android-developers] Re: How to set and get thread priority from Java and native layers

2010-05-15 Thread KK
= 0? Thanks KK On May 11, 9:16 pm, Streets Of Boston flyingdutc...@gmail.com wrote: It could be that thethread'sThreadGroup has a maximumpriorityof 5. Athread'sprioritycannot be higher than it'sthread-group max-priority. It could be that some code you didn't code, but call instead, that sets

[android-developers] How to set and get thread priority from Java and native layers

2010-05-10 Thread KK
is wrong here. Also what should I be doing to increase the priority of my threads(both from Java and native). Thanks KK -- 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

[android-developers] Wifi drop Issues on Motorola Droid

2010-05-06 Thread KK
of streaming I get network connection errors even though I am standing very next to the wifi router. I am not finding this problem with any other devices. Has anyone found any similar issues with the Droid? Any idea what can be done in my program to fix this? Thanks KK -- You received this message

[android-developers] Getting the amount of Audio data buffered in the device

2010-04-05 Thread KK
mode where I will buffer 2-3 seconds of data before continuing playback again. Can someone please tell me how to do this? Thanks in advance KK -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android

[android-developers] JetPlayer keeps logging write blocked for X msecs - is this normal?

2010-02-18 Thread kk
/AudioFlinger( 31): write blocked for 50 msecs W/AudioFlinger( 31): write blocked for 54 msecs They are quite frequent...3-4 of those per second. Is this normal or am I doing something wrong? cheers, kk. -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] can an updated version of an app try to restore using a bundle containing older data?

2010-02-17 Thread kk
the app to v2 4) user starts the v2 version of the app 5) v2 version calls onCreate passing the bundle with v1 data (i.e. the one saved during step (2)) Is that even possible? Do I need to worry about it? cheers, kk. -- You received this message because you are subscribed to the Google Groups

[android-developers] triggering onCreate with a non-null Bundle (or onRestoreInstanceState) from the emulator

2010-02-16 Thread kk
of it) but never onDestroy. So, whenever my app starts up, it starts with a null bundle. I've never had onCreate with a non-null bundle and I've never had onRestoreInstanceState getting called. Can someone please tell me how I can test the restore state functionality from the emulator? cheers, kk

[android-developers] Problem with fwrite onto sdcard

2009-12-04 Thread KK
Hi, I am very new to Android. I am trying the following code in the android ndk. FILE* fp = fopen(/sdcard/test, wb) if(NULL == fp) { return errno; } int written = fwrite(Test, 1, 4, fp); if(4 != written) { return -1; } fclose(fp); return 0; I am trying this on emulator and I have created

[android-developers] Emulator: LogCat Errors for Donut 1.6 Release

2009-09-15 Thread kk
logging skipped, no checkin service 09-16 13:17:26.013: ERROR/LockPatternKeyguardView(582): Failed to bind to GLS while checking for account Thanks, KK --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Emulator: 1.6 SDK release Troubleshooting Proxy

2009-09-15 Thread kk
In previous SDK releases (1.5) the following undocumented command was functional, but now does not post any messages when accessing Network via Browser. emulator -debug-proxy -avd mydevice What is the appropriate command to troubleshoot proxy? Is this a known issue and/or bug? Rgds, KK

[android-developers] Re: Supported Media Formats Programmatically

2009-09-09 Thread kk
to determine. Regards, KK On Sep 9, 5:37 pm, Ajeet Singh ajeet.invinci...@gmail.com wrote: See the class MimeTypeMap.java (frameworks\base\core\java\android \webkit) Hope this helps you. AJ kk wrote: How do I determine programmatically which Media MimeTypes/Formats are supported

[android-developers] Supported Media Formats Programmatically

2009-09-09 Thread kk
? Regards, KK --~--~-~--~~~---~--~~ 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

[android-developers] BroadcastReceiver and Google Services Inquiry

2009-06-19 Thread kk
, KK --~--~-~--~~~---~--~~ 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-developers] Re: Google Login Service not working on SDK 1.5

2009-05-15 Thread kk
Hi All, I experience the same behavior Farida is reporting. It appears the GoogleLoginService is not found on emulator. Here is my emulator info: Target: Google APIs (Google Inc.) Based on Android 1.5 (API level 3) Skin: HVGA Sdcard: 100M Here is my logCat output: 05-16

[android-developers] Re: Google Login Service not working on SDK 1.5

2009-05-15 Thread kk
Hi Farida, I am experiencing the same issue. Has anybody responded to your inquiry? Regards, KK On Apr 29, 12:48 am, farida mailfaridak...@gmail.com wrote: I downloaded the latest release of android SDK 1.5, but unable to give the credentials for the Google Login Service from devTools

  1   2   >