[android-developers] Mobile Whiteframe compatability

2017-08-31 Thread Kelvin Dean
Hi all, My office recently started to move into app development and as the designer I've been getting my head around designing for android. I''ve tried to use the Mobile Whiteframe template for assistance (https://material.io/guidelines/resources/layout-templates.html) however I believe it

[android-developers] Re: Google Services Error!!!

2016-05-11 Thread Kelvin Koh
Ya, me too. I'm facing the same problem. "File google-services.json is missing from the module root folder" I have placed in the root folder/app as well as the root folder/src/main, but it still shows the same msg. -- You received this message because you are subscribed to the Google Groups

[android-developers] Ask!

2012-07-15 Thread Kelvin saputra
Is the htc evo 3D much better tha sensation ? -- 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] Bitmap OutofMemoryError when using gallery and imageswitcher

2011-11-28 Thread Kelvin Lam
Here in my code, I have used a Uri method to get the list of file in my sdcard and show them by gallery and imageswitcher. However, when i test it with my HTC wildfire s, my log tell me that the heap size is not enough. However, when i try on the emulator and my friend's galaxy sII, there is no

[android-developers] Issues ListView load in thread on demand with orientation changes on device/emulator

2011-08-17 Thread Kelvin
Hi, I've recently adapted a way to do load on demand listview and with loading image for each row in thread. The empty data is sent to adapter, at the end, the background thread kicks off at end of activity onCreate and as you fling to bottom, the OnScroll states noticed that you are at

[android-developers] Maintain listview scroll position while rotating device

2011-08-08 Thread Kelvin
I was searching around but didn't really get a good answer of how to maintain scroll position when rotating device/phone. ex: if I've scrolled down to 5th item on the listview; when I rotate the phone/ device, the index of the listview should not be forced to go to top. Any solutions and more

[android-developers] Creating Multiple User Preference

2010-07-12 Thread Kelvin
Hi, Not sure if i phrase it the correct way. What I meant is, eg. For a game application, user able to save multiple game files, or create multiple 'user account'. So at the start of the application, user can choose which account/saved file to load. Cause right now, I'm just able to save a single

[android-developers] How can I use VideoView to streaming without buffering?

2010-04-13 Thread Kelvin
I have a question. When I use the VideoView to play the RTSP streaming, the VideoView will buffering some cache buffer. Is there any method to tell the VideoView DON'T buffer? My code: String VideoUri = rtsp://192.168.5.121:/live/h264; mVideoView = (VideoView) findViewById(R.id.video_view);

[android-developers] Sending custom headers in WebView

2010-03-12 Thread kelvin
loading the data into the WebView. While this is not difficult, the WebView then demonstrated problems with relative URLs and downloading images. Has anyone come up with a clean way to get this done? Thanks in advance. -kelvin -- You received this message because you are subscribed to the Google

[android-developers] Reporting Exceptions

2009-01-05 Thread kelvin
while accessing the SD card, and trying to track this down remotely is driving me nuts. Thanks in advance. -kelvin --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Re: Reporting Exceptions

2009-01-05 Thread kelvin
phones actually had an Exception Browser where a user could at least go back and see visually see what had happened, so I assume they have this at least partially implemented. Thanks again for the help. -kelvin On Jan 5, 4:45 am, Mark Murphy mmur...@commonsware.com wrote: kelvin wrote

[android-developers] ListView in ScrollView

2008-06-27 Thread kelvin
I know that this topic has been covered many times in this group, but I still have a question I'm hoping to get answered. Referring to this thread, http://groups.google.com/group/android-developers/browse_thread/thread/3bfb013704d886fb/a556ab75f22c8dd1 hackbod wrote: The ScrollView gives its

[android-developers] Re: ListView in ScrollView

2008-06-27 Thread kelvin
On Jun 27, 11:44 am, Romain Guy [EMAIL PROTECTED] wrote: Why would you do it this way? ListView will already load and display as many elements as it can. You are just forcing ListView to work in a way that's it is not meant for and, worse, you are forcing it to work in a very inefficient way.

[android-developers] Re: ListView in ScrollView

2008-06-27 Thread kelvin
Thanks for the response. Yea, I probably wasn't clear. I actually don't care about the scrollability since yes, I am in a ScrollView. I DO care about the AdapterView characteristics. I am using the ScrollView because I have a number of other views in the activity besides the ScrollView and I

[android-developers] Re: ListView in ScrollView

2008-06-27 Thread kelvin
I have thought about using a single ListView, but unfortunately it doesn't really go with my design such as it is. I haven't looked into what it'd take to do what you're saying with an Adapter-backed LinearLayout, but that sounds what exactly like what I need. I can hopefully figure it out, but

[android-developers] Re: ListView in ScrollView

2008-06-27 Thread kelvin
Oops. That was meant to be in response to Romain's message. Mark, yea, the Spinner control doesn't really go with the UI effect that I'm attempting to accomplish, but again, thanks for the time. On Jun 27, 12:12 pm, kelvin [EMAIL PROTECTED] wrote: I have thought about using a single ListView