Re: [android-developers] Help Needed on Android Widget

2010-11-23 Thread Rocky
Hey, go thr this link, u may find the sol http://mobiforge.com/developing/story/sms-messaging-android On Tue, Nov 23, 2010 at 1:21 PM, Dev Android devandroid1...@gmail.comwrote: Rocky, Thanks for your reply. We don't have method startActivityForResult available in the android widget

[android-developers] Re: android for OCR library?

2010-11-23 Thread ko5tik
There was direct download link with barcode - but it crashed on attempt to install on 2.1 I got good recognition results with invariant moments, and they are easy to compute (and pretty straightforward), but interpretation if results and matching to actual characters requires additional

[android-developers] google api ajax webservice

2010-11-23 Thread Atik
hi guys, i m stuck with an issue.. i have created json parser to parse the data from this http://ajax.googleapis.com/ajax/services/search/local?v=1.0sll=48.8565,2.3509q=restaurant i want to parse this data and wanna show in list view in android. please give me sampple code. actually ihave done

Re: [android-developers] Creating 2D games with Android and Blender

2010-11-23 Thread Miguel Morales
Nice, I enjoyed the part of content creation. I'm going to keep your suggestion of using a single bitmap with all the sprites instead of individual images. Although it's not terrible it does indeed have a performance impact. Are you getting good performance using this approach with canvas alone?

[android-developers] Problem with AnimationDrawable

2010-11-23 Thread Serdel
Hello, I have problems with AnimationDrawable which i use to animate a 'striped' gif file. In fact I have two animations that I want to use in one activity (and they must be used in the same activity). Both animation are build with 7 frames : ?xml version=1.0 encoding=utf-8? animation-list

Re: [android-developers] Problem with AnimationDrawable

2010-11-23 Thread Kumar Bibek
There's a problem with the current release (I guess), where these kind of animations do not start if you call them directly from any of the activity's lifecycle method. If you do the same thing, from within a thread, or on the click of a button, this seems to work. Kumar Bibek

[android-developers] how to use Apex Google Api in Android

2010-11-23 Thread Maks
Hi i want to use Google Apex Api in my android application . Could any body provide me any help gerarding it. Thanks in advance. -- 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: How to make a trial version which starts a limited amount of times?

2010-11-23 Thread Eyvind Almqvist
Yes, I see now that they write Products that cannot be previewed by the buyer (such as applications): You authorize Google to give the buyer a full refund of the Product price if the buyer requests the refund within 48 hours after purchase. I have released a trial like I described on OVI and I

[android-developers] Re: LVL - Yay or Nay?

2010-11-23 Thread Sheado
Thanks for your feedback Zsolt, We love working on Android apps, but at the end of the day we need to be paid for our efforts. If LVL isn't going to result in increased revenue for us, then we may not want to dedicate any time to it (it's not just the time we worry about, but the potential bugs,

[android-developers] Re: Apps not showing in Market

2010-11-23 Thread mot12
If you expect anybody to help you here, then at least post your manifest. How do you think anybody would know the answer to your question? Magic? Martin mobitobi.com Gentle Alarm, Sleep Now -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] IllegalStateException in MediaPlayer (Redux)

2010-11-23 Thread Jason Polites
Hi folks, Some time ago I posted an issue relating to an IllegalStateException in the Media Player (http://groups.google.com/group/android-developers/ browse_thread/thread/46c7c2cd4f4a6958/5551d47aac93632c) I have just launched the app into the wild and this error is flooding in. I just can't

[android-developers] Re: LVL - Yay or Nay?

2010-11-23 Thread Jason
What's the status of the Google TC's in regard to this? Last I read you were allowed to promote anything in the app that wasn't purchased via the Market. From the Android Developer Distribution Agreement: (http:// www.android.com/us/developer-distribution-agreement.html) You may not use the

Re: [android-developers] Help Needed on Android Widget

2010-11-23 Thread Dev Android
Good example but it doesn't help me to my requirement. Guys, Please suggest yours opinions. -- Eng. On Tue, Nov 23, 2010 at 1:34 PM, Rocky rkjhaw1...@gmail.com wrote: Hey, go thr this link, u may find the sol http://mobiforge.com/developing/story/sms-messaging-android On Tue, Nov 23,

[android-developers] Re: IllegalStateException in MediaPlayer (Redux)

2010-11-23 Thread Jason
Whoa.. what's with the double post?? On Nov 23, 8:16 pm, Jason Polites jason.poli...@gmail.com wrote: Hi folks, Some time ago I posted an issue relating to an IllegalStateException in the Media Player (http://groups.google.com/group/android-developers/

[android-developers] Spinner Style

2010-11-23 Thread Jithin
Hi friends, As part of my project I need a spinner that should display items like HTML select tag rather opening a new window. Is it possible...? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

Re: [android-developers] Change Activity in Tabs on Button Click

2010-11-23 Thread skink
Kumar Bibek wrote: Currently this is not supported. Kumar Bibek Why not? If activity that is bound to Tab1 is ActivityGroup you can easily do it. pskink -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

Re: [android-developers] Help Needed on Android Widget

2010-11-23 Thread Kostya Vasilyev
AppWidgetProvider is a subclass of BroadcastReceiver. You can have your Activity send an Intent with extras (for new data values) to the widget provider, whenever there is new data to display. Another way is to update the widget directly from code that updates the data. You can use

[android-developers] Re: Problem with AnimationDrawable

2010-11-23 Thread Serdel
Thank you for the reply. I really don't get this - following your advice I moved the animation creating code out of OnCreate. Firstly I overrided an 'OnStart()' method of the main activity - nothing. Then I have put it in the OnTick() method of the timer in a simple if condition to launch only at

[android-developers] Is that possible to print backtrace when debug native code

2010-11-23 Thread A.TNG
Hi All, When I debug android app, if I work with Java, I can use Log.d(TAG, , new Throwable()) to print backtrace of Java code. This is really handy for me to find bugs. But when I work with native library (e.g. libwebcore.so), there seems no way to print backtrace in runtime. The only way to

[android-developers] Inputtype for edit text not changing

2010-11-23 Thread umakantpatil
Hi.. I want to show edittext which will default show faint color text written as Password. As soon as user focus on it then I want to convert it from text to password type. I did that but its not working.. On focus of the password box. I wrote as follows:

Re: [android-developers] Inputtype for edit text not changing

2010-11-23 Thread Kostya Vasilyev
You are missing a flag to tell EditText that its contents is text: setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWORD); or setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD); Note the use of TYPE_CLASS_TEXT. You can also use

[android-developers] Re: Apps not showing in Market

2010-11-23 Thread bagelboy
There's an app for that! On Nov 23, 9:08 am, mot12 martin.hu...@gmail.com wrote: If you expect anybody to help you here, then at least post your manifest. How do you think anybody would know the answer to your question? Magic? Martin mobitobi.com Gentle Alarm, Sleep Now -- You received

Re: [android-developers] Re: Passing values from an Activity to a class that extends View Class

2010-11-23 Thread ΠΑΣΧΑΛΗΣ ΠΛΙΑΧΑΣ
Well i made this and it works for me *This is the manifest file* ?xml version=1.0 encoding=utf-8? manifest xmlns:android=http://schemas.android.com/apk/res/android; package=pas.Hari.com android:versionCode=1 android:versionName=1.0 application android:icon=@drawable/icon

[android-developers] Creating JAR in Eclipse

2010-11-23 Thread Ravi Singh
HI, I have a thirdparty.jar which I have to add into my Eclipse project and make one combined JAR for my entire package. I have added the thirdparty.jar into my pproject using Java Build Path Libraries settings in eclipse. But when I try to make jar for my entire project, the jar creation for my

[android-developers] Re: guitar tuner

2010-11-23 Thread Yahel
Hi mate, I worked on one recently but never finished the job. I found this open source code directly in java code perfect for Android and which works ok and is pretty easy to understand : http://thesongeditor.com/ref/FFT.java I had pretty good result with it. Good luck. Yahel -- You

Re: [android-developers] Creating JAR in Eclipse

2010-11-23 Thread Daniel Drozdzewski
On Tue, Nov 23, 2010 at 10:05 AM, Ravi Singh rcsing...@gmail.com wrote: HI, I have a thirdparty.jar which I have to add into my Eclipse project and make one combined JAR for my entire package. I have added the thirdparty.jar into my pproject using Java Build Path Libraries settings in

[android-developers] Re: LVL - Yay or Nay?

2010-11-23 Thread Yahel
At this point I'm leaning towards no DRM... hopefully that's the right decision. A good thing it is not an irreversible decision :D Put your apps on the market with no DRM but a single call home via http request at the very first start of the app. In a month you'll be able to compare you're

[android-developers] Re: Static Layout for whole app that must be in all Activity

2010-11-23 Thread Ganapathy.C
Thank you all, But i need a ticker like Marquee in HTML and also for all page... On Nov 22, 11:48 am, Doug beafd...@gmail.com wrote: I think the question is essentially asking how to have a view that stays on the screen at all times even between changes in active activity. If there is a

[android-developers] Advanced Device Administration

2010-11-23 Thread m88m
Hey! I want to extend the Device Administration framework for my Enterprise needs, so for example I would be able to better control which applications installed on the device. Is there a way to it? (Without rooting the device) Thanks M -- You received this message because you are subscribed

[android-developers] RTSP streaming using opencore

2010-11-23 Thread venu
Hi all, I ported android using froyo 2.2.1. Now i want to stream video source using opencore.I am not able to understand how to use opencore's API's . How to use opencore API's like streaming,3G etc,..Please give me suggestions how to work on opencore.. Thanks in advance -- You received

[android-developers] Re: Inputtype for edit text not changing

2010-11-23 Thread Sarwar Erfan
No need to create this effect manually on focus. android:hint xml attribute is there for the effect you want. You do not need to write a single line of code. == EditText android:layout_width=100dip android:layout_height=wrap_content

[android-developers] Doubt regarding redirection of websites to mobile version and address bar of browser.

2010-11-23 Thread sat
Hi 1. I am launching the browser in a normal way with URL supplied as parameter, Intent ln_intent = new Intent(Intent.ACTION_VIEW); ln_intent.setDataAndType(Uri.parse(web_url), text/html); startActivity(ln_intent); here web_url is any web url. This opens the browser with the mobile version of

[android-developers] Re: How to change color of ListView child items on focus

2010-11-23 Thread viktor
Why did you use complex item layout? Use selector as TableLayout background. On 20 Лис, 21:18, Francesco nolano...@gmail.com wrote: Hi all. i have a list View in my app (this is the xml layout): ?xml version=1.0 encoding=utf-8? ListView

[android-developers] Re: google api ajax webservice

2010-11-23 Thread sat
Assuming result = your JSON response. JSONObject json = null; JSONObject json_obj = null; JSONArray json_arr = null; json = new JSONObject(result.toString()); json_obj = json.getJSONObject(responseData); json_arr = json_obj.getJSONArray(results); That should help you. On Nov 23, 1:12 pm, Atik

[android-developers] Re: Change Activity in Tabs on Button Click

2010-11-23 Thread manu_bet
I did that by static method in TabActivity On 23 nov, 10:34, skink psk...@gmail.com wrote: Kumar Bibek wrote: Currently this is not supported. Kumar Bibek Why not? If activity that is bound to Tab1 is ActivityGroup you can easily do it. pskink -- You received this message because you

[android-developers] Re: java.lang.IllegalArgumentException: View not attached to window manager

2010-11-23 Thread viktor
You are dismissing dialog in a Runnable, thats why you have exception. Try do it in UI Thread, I mean obtain message and send it to Handler. On 20 Лис, 12:45, PaulJ pjablonsk...@gmail.com wrote: Hi there brainiacs, I'd like to ask about how to proper handle progressDialog in Thread, since

[android-developers] Re: google api ajax webservice

2010-11-23 Thread sat
Using JSON array from the previous post , one can do like this , String res = json_arr.get(0).toString(); //To get the first result. obj = (JSONObject) new JSONTokener(res).nextValue(); String url = obj.getString(url); //assuming url is one of the field in JSON response. Now u can display

[android-developers] Re: SharedPreferences are not stored

2010-11-23 Thread Bob Kerns
I would bet that you are accessing a different set of preferences than the ones you're saving in the preference screen. The Preference screen uses the preference file returned from PreferenceManager.getDefaultSharedPreferences(context); (context will typically be 'this' -- your activity). If you

[android-developers] Re: How to change color of ListView child items on focus

2010-11-23 Thread sat
I dint go through ur xml , But I will give an idea. implemet OnListItemClick handler of listview and we get access to the child views , and u can change the background color using it. On Nov 23, 4:23 pm, viktor victor.scherb...@gmail.com wrote: Why did you use complex item layout? Use selector

[android-developers] Re: Creating 2D games with Android and Blender

2010-11-23 Thread Ruben
Hi Miguel, I'm getting solid 60 fps on my Samsung Galaxy Spica (800 mhz processor) for most levels. I have heard that does not work so well in the HTC Magic... CPU load is quite balanced between updating the scene and rendering it, thus I could improve performance by optimizing the update phase

[android-developers] Re: Inputtype for edit text not changing

2010-11-23 Thread umakantpatil
Thanks Sarwar.. It works.. On Nov 23, 4:10 pm, Sarwar Erfan erfanonl...@gmail.com wrote: No need to create this effect manually on focus. android:hint xml attribute is there for the effect you want. You do not need to write a single line of code. ==

[android-developers] Re: Problem with AnimationDrawable

2010-11-23 Thread Serdel
Ok I have managed to launch the animation at activity startup by putting it in the onWindowFocusChanged method. However I am still struggling with the out of memory problems. I tried to use some suggestions people give on the net like analyseAnimation.setCallback(null)

Re: [android-developers] Re: Problem with AnimationDrawable

2010-11-23 Thread Kumar Bibek
Reduce the size of your drawables. Make them 9patch if you can. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Tue, Nov 23, 2010 at 5:24 PM, Serdel adam.lichwierow...@gmail.comwrote: Ok I have managed to launch the animation at activity startup by putting it in the

[android-developers] Re: How to embed an external Activity inside one of mine?

2010-11-23 Thread Francesco Vadicamo
Hi Kumar and thanks for your reply! Yes, I mean an Activity inside another - external - Activity..! I'd like to show a PDF with two buttons, accept or reject, below. Is there any way for doing it? Any ideas? Thanks, Francesco On Nov 23, 7:32 am, Kumar Bibek coomar@gmail.com wrote: You mean,

[android-developers] Runtime Exception in MediaRecorder.setAudioSource() method

2010-11-23 Thread David_Fisher
Hi, I have a service that has a broadcast receiver which listens to Phone state changes. When i receive an incoming call, i get an instance of the AudioManager class and set the speakerphone to true. But right after this when i do the mediaRecorder.setAudioSource(MediaRecorder.setAudioSource.MIC),

Re: [android-developers] How to push the code change to Android open source project.

2010-11-23 Thread Feng Chris
Many thanks for your help!! Thanks, Chris 2010/11/23 Kumar Bibek coomar@gmail.com Umm, there's a long long procedure for this. You should contact the team at source.android.com and wait for their response. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Mon, Nov

[android-developers] Re: 1.5 quits for apparently no reason whilst animating (WIN DEATH)

2010-11-23 Thread Jason
Can you post some code? Specifically the portion that does the drawing. On Nov 23, 1:44 am, Muleskinner ja...@maturusmobile.com wrote: Hi, I have an app that is working fine in 1.6 and up but crashing for apparently no reason in 1.5. The app suddenly quits with the following message...

[android-developers] Re: Need Help !!

2010-11-23 Thread Jason
Not sure if it's what you want.. but you could try using a ViewFlipper... http://developer.android.com/reference/android/widget/ViewFlipper.html On Nov 22, 11:16 am, Anis Ben Nsir anis.benn...@gmail.com wrote: I'm using a TabActivity to run two activity. In the first activity I'm using

[android-developers] Re: Initial position of scrollbar in ListView

2010-11-23 Thread Prateek Jain
Hi, I think headers are the part of ListView (therefore 1st ListView item), so you cannot make scrollbar at the top when the focus is on the the next item. No so sure though. Cheers, Prateek On Nov 18, 5:30 pm, lou louis.coq...@wopata.com wrote: Hi ! I'm actually working on a ListView, which

[android-developers] Re: Raising intent to child of tab activity

2010-11-23 Thread Anzi
But I want to switch from different activity to child activity of tab activity and process the intent of which was raised from my child tab activity. On Nov 23, 11:26 am, Kumar Bibek coomar@gmail.com wrote: Instead of raising an Intent, just change the selected Tab to the one that contains

[android-developers] https X509 webview

2010-11-23 Thread Seb
I need a webview which can connect and auth using x509 certs. 1. One idea which came to mind was that I could override or implement some interface where I could use my own code for creating a secure socket. However I cant seem to get started with this approche. I have read the docs at

[android-developers] Re: Spinner Style

2010-11-23 Thread pedr0
Do you are looking a spinner wheel or a spinner menu? On 23 Nov, 10:28, Jithin danijanuv...@gmail.com wrote: Hi friends,            As part of my project I need a spinner that should display items like HTML select tag rather opening a new window.            Is it possible...? -- You

[android-developers] Re: Andriod Trainer(10-15k per day)

2010-11-23 Thread Jason
lol On Nov 23, 6:27 pm, Zsolt Vasvari zvasv...@gmail.com wrote: What are you, a slave driver?  I refuse to do for under 20k a day, sorry. On Nov 20, 12:49 pm, syed sameer sameer36...@gmail.com wrote: We need an Android trainer; the compensation will be 10-15k per day for a span of

[android-developers] Re: Initial position of scrollbar in ListView

2010-11-23 Thread pedr0
You can use this function: http://developer.android.com/reference/android/widget/ListView.html#setSelection(int) ListView.setSelection(int position) It works? On 23 Nov, 13:33, Prateek Jain mrprateekj...@gmail.com wrote: Hi, I think headers are the part of ListView (therefore 1st

[android-developers] Re: Is that possible to print backtrace when debug native code

2010-11-23 Thread DanH
There's no generic C/C++ facility for that -- it would be system- specific (if it exists at all). On Nov 23, 3:45 am, A.TNG tang.j...@gmail.com wrote: Hi All, When I debug android app, if I work with Java, I can use Log.d(TAG, , new Throwable()) to print backtrace of Java code. This is

[android-developers] Re: How to use Google Places API

2010-11-23 Thread Spiral123
Did you get accepted for the limited developer preview? On Nov 18, 3:12 am, bluepig bluepi...@gmail.com wrote: I found the following note in The Google Places API (Developer Preview) http://code.google.com/apis/maps/documentation/places/#PlaceDetailsRe... Note: To use the Google Places API

[android-developers] Android onClick seems to be blocking onFling

2010-11-23 Thread CB
I have an Activity that implements a Gesture Detector to catch the user fling input for navigation to other screens. That was working fine - but - I recently updated a class that derives from my BaseActivity to add an onClick function and now that click event seems to block the onFling from being

[android-developers] Having trouble setting custom TitleView for a Dialog

2010-11-23 Thread William Ferguson
I am trying to create a dialog with a custom title and content views but am running into ResourceNotFoundExceptions when I try and inflate the views. final TextView titleView = (TextView) View.inflate(activity, R.id.how_to_play_dialog_title, null); final WebView contentView =

[android-developers] Re: Maps doesn't show

2010-11-23 Thread coy
Tommy, Yes, it could be the problem. But what is the right API KEY? Moreover, I exported my app as a unsigned android app and then I pushed it to the phone. Is that the problem?? thanks :) On Nov 14, 9:57 pm, Tommy droi...@gmail.com wrote: Sounds like you don't have the right API key in. You

Re: [android-developers] GPU

2010-11-23 Thread Daniel Drozdzewski
On Sat, Nov 20, 2010 at 1:40 AM, Nathaniel Warner warner.nathan...@gmail.com wrote: How do I force my application to use the current devices GPU if one is available? By using anything visual ... ? Platform will utilise GPU without your interference. Daniel -- You received this message

[android-developers] Re: How to change color of ListView child items on focus

2010-11-23 Thread viktor
sat, it is not correct, because Francesco wants use a focus. On 23 Лис, 13:47, sat sathvikm...@gmail.com wrote: I dint go through ur xml , But I will give an idea. implemet OnListItemClick handler of listview and we get access to the child views , and u can change the background color using

[android-developers] Re: Android calls to web service slow? Using .NET web service

2010-11-23 Thread Jason
I have a similar use case, although I am only POSTing data and it's a simple RESTful service, but the data exchange mechanism is the same. I haven't actually timed it but your times don't seem wildly out from what I have seen. One thing that stands out in your code is the timer. You should

[android-developers] Re: GPU

2010-11-23 Thread Jason
Are you saying you want to use the GPU to process raw data.. or just to render graphics? If it's the former then you'd certainly have to do this from native code, and I doubt you would be able to access this without root access on the device. If it's the latter then the previous poster is

[android-developers] Re: Having trouble setting custom TitleView for a Dialog

2010-11-23 Thread viktor
You are on wrong way, you can inflate only layout (ViewGroup), but not child view, try to using View.inflate(activity, R.layout.how_to_play_dialog, null); On 23 Лис, 15:18, William Ferguson william.ferguson...@gmail.com wrote: I am trying to create a dialog with a custom title and content views

[android-developers] Re: Is that possible to print backtrace when debug native code

2010-11-23 Thread Jason
If you want to just print a log line, you can do this with the log.h library: #include android/log.h __android_log_print(ANDROID_LOG_DEBUG, Category, Your message); But you won't get a stack trace (I'm assume from backtrace you mean stack trace?) If you are trying to handle exceptions in C++

[android-developers] App missing from market on 2.2 devices.

2010-11-23 Thread Andreas
Hello, i have received complaints from a number of customers that one of my paid apps is missing from the market and they can't download it after updating their phones to 2.2. I have no idea what the cause is and unfortunately i also don't have access to a device with 2.2. Maybe someone here can

Re: [android-developers] Reg: Accessing a service in other package.

2010-11-23 Thread Mark Murphy
On Mon, Nov 22, 2010 at 6:38 AM, Aluvala Suman aluvala.su...@gmail.com wrote: I am trying to access a service in other package, but not able to get the binder. Attached my file hierarchy. This is the manifest file for the ExampleService package ?xml version=1.0 encoding=utf-8? manifest

Re: [android-developers] Add view to an layout by Z index?

2010-11-23 Thread Mark Murphy
Step #1: Get rid of AbsoluteLayout and use RelativeLayout, or possibly FrameLayout. Step #2: Add the child at the appropriate index. Later children are higher on the Z axis than are earlier children. On Mon, Nov 22, 2010 at 4:16 AM, dannylin chenkin...@gmail.com wrote: I have a project that

Re: [android-developers] Advanced Device Administration

2010-11-23 Thread Mark Murphy
On Tue, Nov 23, 2010 at 6:04 AM, m88m m...@walla.com wrote:  I want to extend the Device Administration framework for my Enterprise needs, so for example I would be able to better control which applications installed on the device. Is there a way to it? (Without rooting the device) AFAIK,

[android-developers] Keeping a service alive till the phone is switched off

2010-11-23 Thread David_Fisher
Hi, once we call the startService() method, can we keep the service alive until its explicitly stopped by the user? I want my service to stay alive until the phone is switched off. How can i do this? The idea is that when I receive an incoming call, I want to start recording and once the status

[android-developers] Re: Pubish: Target phones with fast hardware.

2010-11-23 Thread Warren
This is not a direct answer to your question, but have you tried altering your models and images for less capable phones? I've tried something like this with acceptable results. Probe the screen size or do a CPU calculation check at startup, then reduce your texture sizes or model detail

[android-developers] Intent and extras

2010-11-23 Thread oriharel
Hi! I set an PendingIntent on a Notification (notification.setLatestEventInfo). this intent is actually the same intent used to launch my app, only with a flag that I put in the extra (intent.putExtra(TAB_INDEX_PARAM_NAME, UPDATES_TAB_INDEX)). So my first activity launches, it queries it's

Re: [android-developers] ADB device name show invalid characters

2010-11-23 Thread Rogério de Souza Moraes
Do the following steps: $sudo -s $adb kill-server $adb devices Do not forget to logout from root. Regards, Rogerio 2010/11/23 Kumar Bibek coomar@gmail.com Drivers fro your devices are not installed properly. Once you do that, it will tell you your device name. Kumar Bibek

Re: [android-developers] Re: Market statistics stall

2010-11-23 Thread Evgeny V
Guys, Any progress with this issue? My Market data is still frozen :( Thanks, Evgeny On Mon, Nov 22, 2010 at 10:37 PM, Kumar Bibek coomar@gmail.com wrote: Aah, Patience :) Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Tue, Nov 23, 2010 at 2:06 AM, David

Re: [android-developers] Intent and extras

2010-11-23 Thread Mark Murphy
On Tue, Nov 23, 2010 at 9:27 AM, oriharel ori.ha...@gmail.com wrote: I set an PendingIntent on a Notification (notification.setLatestEventInfo). this intent is actually the same intent used to launch my app, only with a flag that I put in the extra (intent.putExtra(TAB_INDEX_PARAM_NAME,

[android-developers] Re: help me understand: upper case characters in layout file names are disallowed

2010-11-23 Thread Leon Moreyn-Android Development
It a language structure concept. You just have to build around it. Its kind of like saying why can i only pay with quarters into a vending machine if I have two dimes and a nickel. The structure of the machine is not designed to handle you dimes and nickels and this way the machine can process

Re: [android-developers] Keeping a service alive till the phone is switched off

2010-11-23 Thread Mark Murphy
On Tue, Nov 23, 2010 at 9:22 AM, David_Fisher davidfsh...@gmail.com wrote: Hi, once we call the startService() method, can we keep the service alive until its explicitly stopped by the user? If you use startForeground(), that will help prevent the OS from stopping your service. However: --

Re: [android-developers] Re: How to change color of ListView child items on focus

2010-11-23 Thread Kumar Bibek
Changing the background color is too much code, however, although it works. A better way to get this going is by using StateListDrawables. Create your own state list drawable, and set it as the background to each of your items, or the as the selector of the ListView. Kumar Bibek

Re: [android-developers] Re: Spinner Style

2010-11-23 Thread Kumar Bibek
Ummm, on mobile devices, it's not a good way to display a equivalent of HTML select You cannot achieve what you are looking for by using the default Spinner. However, I think you can try and change the behaviour by extending the Spinner class. Just my guess, never thought about it, and never

Re: [android-developers] Re: Maps doesn't show

2010-11-23 Thread Kumar Bibek
Generate an API key which is tied to your keystore(publisher and not the debug keystore). Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Tue, Nov 23, 2010 at 7:01 PM, coy cawe...@gmail.com wrote: Tommy, Yes, it could be the problem. But what is the right API KEY?

[android-developers] Re: streaming mp4 from Internet

2010-11-23 Thread Ahmed Shoeib
as a conclusion to stream mp4 video from internet i need to use MP4Box installed on my device Right ?? On Nov 22, 8:38 pm, Leon Moreyn-Android Development lmor...@earthcam.com wrote: If this video is your video is stored locally on your computer. If its not video, ie you are trying to steam

[android-developers] Re: Problem with AnimationDrawable

2010-11-23 Thread Serdel
Well the draw9patch tool from android sdk had produced files 10 times bigger than the jpg that I used originally. One animation consists of 7 files, each one is 28-40 kb. The 9.png files were starting from 300 kb : Although it doesn't seem much, and I saw people loading several animation in one

Re: [android-developers] Re: streaming mp4 from Internet

2010-11-23 Thread Mark Murphy
On Tue, Nov 23, 2010 at 10:14 AM, Ahmed Shoeib ahmedelsayed.sho...@gmail.com wrote: as a conclusion to stream mp4 video from internet i need to use MP4Box installed on my device Right ?? If by device you mean Android device, then no. MP4Box runs on a Windows, OS X, or Linux computer. You use

[android-developers] Re: Android calls to web service slow? Using .NET web service

2010-11-23 Thread Hal
You may want to try Jt secure Web Services for Android: -Java Pattern Oriented Framework, An application of the Messaging Design Pattern IBM Technical Library http://www.ibm.com/developerworks/webservices/library/ws-designpattern/index.html - Messaging Design Pattern and a distributed

[android-developers] Re: Android onClick seems to be blocking onFling

2010-11-23 Thread Leon Moreyn-Android Development
I think that onClick() is an Override event. I am not to familiar with your onFling but if its a user created class it will most likely remain dormant due to the the digitizer recognizing the onClick and not registering your onFling. On Nov 23, 8:17 am, CB cbu...@gmail.com wrote: I have an

[android-developers] Re: Advanced Device Administration

2010-11-23 Thread m88m
Hey Mark! The last thing I want to do is to change the firmware, but do you know if there is an Android's framework component that the applications asks for permission clearance prior to\during executing? Which I might wrap for this purpose? Do you familiar with someone who tried to alter the

[android-developers] Re: App missing from market on 2.2 devices.

2010-11-23 Thread stymie
If you have used the application locking option when you uploaded it they will they will not show. On Nov 23, 6:09 am, Andreas platypu...@googlemail.com wrote: Hello, i have received complaints from a number of customers that one of my paid apps is missing from the market and they can't

Re: [android-developers] Re: Advanced Device Administration

2010-11-23 Thread Mark Murphy
On Tue, Nov 23, 2010 at 10:36 AM, m88m m...@walla.com wrote: The last thing I want to do is to change the firmware, but do you know if there is an Android's framework component that the applications asks for permission clearance  prior to\during executing? I am rather short on sleep, so this

[android-developers] Re: Send GPS Location Details to Server

2010-11-23 Thread Hal
You will probably need Messaging and Web services for this. You may want to try Jt secure Web services for Android: - Java Pattern Oriented Framework, An application of the Messaging Design Pattern IBM Technical Library

Re: [android-developers] Re: Static Layout for whole app that must be in all Activity

2010-11-23 Thread TreKing
On Tue, Nov 23, 2010 at 4:38 AM, Ganapathy.C cganapa...@gmail.com wrote: But i need a ticker like Marquee in HTML Look into translation animations. and also for all page... Reuse the same layout in each page.

[android-developers] Re: 1.5 quits for apparently no reason whilst animating (WIN DEATH)

2010-11-23 Thread Muleskinner
Hi Jason, Thanks for the reply. It's quite difficult to post code as there's a whole bunch of APIs I've ported over from JavaME that make up what's going on. I am going to try and whittle everything down to a simple test case. The basic 'draw' loop is the same as in the 'Lunar Lander' source,

[android-developers] Re: App missing from market on 2.2 devices.

2010-11-23 Thread Andreas
Ok, that's probably it. I didn't follow the discussion around the licensing server and that's probably why i missed it. I'll change it and get some of my customers to check for me :-) Thank you! Andreas On 23 Nov., 16:38, stymie jamesty...@gmail.com wrote: If you have used the application

[android-developers] Background error reporting on HttpPost

2010-11-23 Thread Leon Moreyn-Android Development
I am running a background service were data is posted to an online site that process the information to post to online database. The problem i am encountering is that with the data being posted if there is an error there is not immediate way for me to know. i am considering several options. First

Re: [android-developers] creating diamond shape

2010-11-23 Thread TreKing
On Mon, Nov 22, 2010 at 1:35 AM, sunrises surya@gmail.com wrote: how can we create diamond shape view using 2D or 3D,I need to show the Images in that customized view instead of default ImageView class Why does your view have to be shaped like a diamond? Can you just use a diamond-shaped

[android-developers] Re: Online Image in SimpleExpandableList

2010-11-23 Thread Leon Moreyn-Android Development
So the SimpleExpandabeListAdapter is text base only? So I would need to create new adapter style? On Nov 23, 1:51 am, Kumar Bibek coomar@gmail.com wrote: Well, for this you will have to write a custom adapter for your list view, since the adapter you are using cannot be directly used to

[android-developers] Re: help me understand: upper case characters in layout file names are disallowed

2010-11-23 Thread Diego Torres Milano
This limitation surely comes from supporting some filesystems on some operating systems which are case insensitive. BTW, you can name your View defineNewList but you cannot name your layout, which is a filename, Main. Leon Moreyn-Android Development wrote: It a language structure concept. You

[android-developers] How to start activity on URLSpan click

2010-11-23 Thread Elias Mårtenson
In my application I have a TextView that contains text which (among other things) contains links. When clicking on a link I need to open specific activities. What is the best way of solving this? Currently, the only solution I have been able to come up with is to set each URLSpan span to a URL

Re: [android-developers] Help getting screen number

2010-11-23 Thread Diego Torres Milano
But if the user is seeing any desktop is not in your application. What's your intention ? Kumar Bibek wrote: There is no such API. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Sun, Nov 21, 2010 at 7:38 PM, Pedro Duque pmdu...@gmail.com wrote: Hi, I need to

Re: [android-developers] Re: Market statistics stall

2010-11-23 Thread David Erosa García
On Tue, Nov 23, 2010 at 3:37 PM, Evgeny V evgen...@gmail.com wrote: Guys, Any progress with this issue? My Market data is still frozen :( Mine are still stalled, too. Thanks, Evgeny On Mon, Nov 22, 2010 at 10:37 PM, Kumar Bibek coomar@gmail.com wrote: Aah, Patience :) Kumar

Re: [android-developers] Display Calendar Instance

2010-11-23 Thread TreKing
On Mon, Nov 22, 2010 at 5:47 AM, paresh mayani pareshmay...@gmail.comwrote: what i should do to display the same dialog box or Calendar instance in my application ?? Look through the Android source and see if that version of the date picker is still in there somewhere, yank it out, and add it

  1   2   3   >