[android-developers] Google Maps API Key

2012-07-05 Thread ndiiie 90
HI guys, I note this from https://developers.google.com/maps/documentation/android/hello-mapview Please note that this is only valid while your application is signed with the debug key; once you sign with your private key, you will need a new API key. When you get your key, insert it for the value

[android-developers] OpenStreetMap API Tile Server and Third Party Library

2012-06-26 Thread ndiiie 90
I found that OpenStreetMap has a tight restriction on using its tile servers based on: http://wiki.openstreetmap.org/wiki/Tile_usage_policy#Requirements And I am interested to use third party library to implement OSM in my app, for example, OSMdroid and Routeme. However, I am curious, does third p

[android-developers] Registration ID

2012-04-23 Thread ndiiie 90
Hi all, I am interested in implementing C2DM for the push notification feature in my application. However, when I read the docs https://developers.google.com/android/c2dm/#lifecycle It states that: "Note that Google may periodically refresh the registration ID, so you should design your applicati

[android-developers] Get Owner Email Address in Android 1.x

2012-04-17 Thread ndiiie 90
Hi everyone, how to get owner email address in Android 1.x? I know there is AccountManager class but it's only available for Android 2.x. I also try this one but still can't work at all http://www.mailinglistarchive.com/html/android-developers@googlegroups.com/2009-06/msg01032.html because it gi

[android-developers] PendingIntent getService

2012-04-17 Thread ndiiie 90
Hi all, according to here: http://developer.android.com/reference/android/app/PendingIntent.html#getService%28android.content.Context,%20int,%20android.content.Intent,%20int%29 Retrieve a PendingIntent that will start a service, like calling Context.startService()

[android-developers] Push notification for Android 1.6++

2012-04-15 Thread ndiiie 90
Hi all, i know that there is C2DM to support push notification for android, but it only supports 2.2++ based on this http://code.google.com/android/c2dm/ CMIIW I want to push notification supports 1.6++, is there any recommendation? Thanks -- You received this message because you are subscrib

[android-developers] Admob causes wrong text in textview

2011-10-30 Thread ndiiie 90
Hi guys, i follow how to put admob tutorial from http://code.google.com/mobile/ads/docs/android/fundamentals.html and use http://code.google.com/mobile/ads/docs/android/banner_xml.html but when the ad is loaded, textviews under it become uncorrected display the text (the layout is okay) Anyone

[android-developers] Facebook SDK error

2011-10-22 Thread ndiiie 90
Hi guys, i implement facebook sdk in my app and just follow the tutorial. When i call other activity, let's say: the activity that i implement facebook sdk is activity A, from there i can call other activity which is B. >From B, i press back button, then it goes back to A. But it returns error: -

[android-developers] Oddness of ImageView

2011-10-19 Thread ndiiie 90
Hi guys, has anyone experienced the oddness of imageview? I have an imageview and other textviews in one layout, when i tried to set the imageview, below is the code String baseurl = "http://www.test.com";; String urlOfImage = baseurl + "1.jpeg"; Drawable image = ImageOperations(getApplicationCo

[android-developers] How to escape ampersand?

2011-10-11 Thread ndiiie 90
Hi all, how to escape ampersand, such as < > " & And change it to proper character? Thanks -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this

[android-developers] Prevent Time Changed by User

2011-09-08 Thread ndiiie 90
Hi guys, I find a case about something that I can not resolve this problem: - I have a countdown timer which is ticking until it counts to 0 (to a specific time, lets say until 00 midnight) - It will tick correctly by calculating the destination time with user's phone time - But if user change th

[android-developers] Tablet vs Phone

2011-09-07 Thread ndiiie 90
Hi guys, I wonder, if we code android normally with folder drawable-hdpi, drawable-mdpi and drawable-ldpi, will the application suit to the tablet size (which OS is 3.0 below)? Thanks, Rendy -- You received this message because you are subscribed to the Google Groups "Android Developers" group

[android-developers] DatePicker Dialog alike

2011-08-21 Thread ndiiie 90
Hi guys, I wonder is there any dialog that is similar with date picker? But i only want to have 1 editText with plus and minus button like in date picker.. Is there any such dialog exist? Thanks -- You received this message because you are subscribed to the Google Groups "Android Developers"

[android-developers] Text gone when clicked

2011-08-20 Thread ndiiie 90
Hi guys, in many applications that are published out there, I see that some of them in editText of password and username, there are some text with gray color (usually) and when user clicked it, the text is gone.. what is the attribute of editText to do it? Or i must code it manually to response

[android-developers] Cross Platform Framework

2011-08-14 Thread ndiiie 90
Hi guys, what is the best cross platform framework out there? is there any name that can be recommended? such as corona, phonegap, etc especially the one that can handle multiple screen in android Thanks, Rendy -- You received this message because you are subscribed to the Google Groups "And

[android-developers] How safe to store database in sqlite?

2011-08-12 Thread ndiiie 90
Hi guys, I wonder how safe to store sensitive data in sqlite in Android? Because i've researched that rooted Android phone can access the database. But can the database to be edited? or view only? Thanks, Rendy -- You received this message because you are subscribed to the Google Groups "An

[android-developers] Sqlite version in all Android platforms

2011-08-12 Thread ndiiie 90
Hi guys, I am wonder what is sqlite version in all android platforms? Is it version 3? or is there any version below? Thanks, Rendy -- 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 close entire app?

2011-08-10 Thread ndiiie 90
Hi guys, how to close entire app? if i use finish(), it will only reversed back to previous activity. if i use android.os.Process.killProcess(android.os.Process.myPid()), it is not really close entire app. Thanks, Rendy -- You received this message because you are subscribed to the Google Gro

[android-developers] How to detect "&" HTML tag?

2011-08-08 Thread ndiiie 90
Hi guys, how to replace & in html tag? and replace it with proper character? For example, if I detect &, it will be replaced by &.. Must i do it one by one? Or is there any easier way to do it? Thanks, Rendy -- You received this message because you are subscribed to the Google Groups "Androi

[android-developers] App Widget Automatically Deleted after Reboot

2011-08-05 Thread ndiiie 90
Hi all, I have problem in developing app widget. When i try it in real device, after i reboot my phone, the widget is automatically deleted from my home and i must reinstall the app to have the widget in widget list. Is there any specific code must be done to prevent that thing? Thanks -- You

[android-developers] How to pass parameter from home widget to an activity?

2011-08-03 Thread ndiiie 90
Hi all, I am stuck how to pass parameter from home widget to an activity.. I have used code how to pass parameter from an activity to other activity: Bundle bundle = new Bundle(); bundle.putString("test", "test"); Intent intent = new Intent(context, Main.class); intent.putExtras(bundle); PendingI

[android-developers] Motion Sensor in Android

2011-07-31 Thread ndiiie 90
HI guys, this is a random question in my mind. Does Android support for motion sensor like Microsoft Kinect does? Thanks, -- 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@googlegroup

[android-developers] Focus in Listview

2011-07-27 Thread ndiiie 90
Hi all, I have a case where I have custom listview with the editable text in each of the item. The strange case is when I click the editable text, not the first one item (for example, 2nd, 3rd, 4th item, etc), the listview will focus to the 1st item, so that I can't modify the content of 2nd, 3rd,

[android-developers] How to linkify between two activities?

2011-07-27 Thread ndiiie 90
I have done searching in google and find out to linkify between activities in this link: http://stackoverflow.com/questions/4025770/android-launch-activity-from-clickable-text/4026303#4026303 However, I end up in this line of code: UnderlineSpan[] underlines = strBuilder.getSpans(UnderlineSpan.