[android-developers] Re: Http Live Streaming

2011-10-13 Thread kiranmai
Hi we are unable to open the URL which you have sent...Please share me some information on HLS working on HC 3.0 version. Is HLS working on HC 3.0. Because when i am trying it is giving segmentation fault. Also on what all versions does HLS support??? Regards, Kiranmai. On Oct 13, 3:59 pm, zafera

Re: [android-developers] Re: Vibrate Trigger on Android Device

2011-10-13 Thread Lee Farrell
That's perfect, exactly what I was looking for, thanks! regards, Lee Farrell On Fri, Oct 14, 2011 at 5:37 AM, Studio LFP wrote: > Have you tried this out? > > > http://developer.android.com/reference/android/webkit/WebView.html#addJavascriptInterface%28java.lang.Object,%20java.lang.String%29

[android-developers] Re: NFC implementation

2011-10-13 Thread Dominik
Sticky-Notes application (demonstrating P2P): https://nfc.android.com/StickyNotes.zip Dominik -- 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

Re: [android-developers] Ringtones and RIAA

2011-10-13 Thread Kristopher Micinski
Generally this group cannot help with legal issues. It is advised you consult a lawyer, as nobody here can offer (solid) legal advice on any firm basis. Kris On Thu, Oct 13, 2011 at 8:08 PM, mrqzzz wrote: > Hi, i am trying to understand if i am going to get in trouble if i > publish a soundboar

[android-developers] Re: Ringtones and RIAA

2011-10-13 Thread ko5tik
On 14 Okt., 02:08, mrqzzz wrote: > Hi, i am trying to understand if i am going to get in trouble if i > publish a soundboard with a dozen of pieces of famous soundtracks > (star wars, superman,etc..) having a lentgh of about 30 secs. or 2 > mins. Certainly. AFAIR there is 10 seconds cap on samp

[android-developers] Re: Adapting BluetoothChat Example for One Server and Multiple Clients

2011-10-13 Thread Pedro Perez
polyclefsoftware gmail.com> writes: > > > In attempting to solve this issue, I believe I have successfully extended the official Android Bluetooth Chat example to work with a server connecting to multiple clients. > > I've uploaded my modifications to github here: > > > https://github.com/po

[android-developers] Android2.1

2011-10-13 Thread Anoop C
hai, I'm using Android2.1 mid tablet. I have mainly two problem in this paltform. 1. The mic is not working while calling. 2. bluetooth is not starting. 1) I have tested calls using skype(2.1.0.46) or fring(3.1.1.1).No 2G calls allowed in this tablet. I have beginner in android debu

[android-developers] Re: Why dither a bitmap

2011-10-13 Thread albnok
If you're loading a very large bitmap and you want to show it on a phone with small heap space e.g. 16MB or 24MB, you may want to change the bitmap to 16 bit, RGB_565. Then you'll realize that gradients look stair-stepped. So when you enable dithering, it breaks the obvious stair-steps and makes i

Re: [android-developers] Re: integrate the youtube player in android app

2011-10-13 Thread Muthu S
Hi Steven Really thanks for your answer am try this its working but play the remote mp4 url videos thats my problem i use the following code but its show error in some device please help me .i want to play the you tube and remote mp4 videos within my app kindly help me.Its very urgent. Issue

[android-developers] Re: integrate the youtube player in android app

2011-10-13 Thread Studio LFP
You normally don't add the YouTube player into your application, you call an ACTION_VIEW intent on a YouTube URL. Intent iVisitSite = new Intent( Intent.ACTION_VIEW, Uri.parse( YOUTUBE_URL_HERE ) ); startActivity( iVisitSite ); I think some people have tried to get it to work in a WebView, but

[android-developers] Re: An application that hosts a set of other applications

2011-10-13 Thread Studio LFP
You're welcome, glad to be able to help. Good luck on your app! Steven Studio LFP http://www.studio-lfp.com On Thursday, October 13, 2011 11:41:14 PM UTC-5, droid-stricken wrote: > > Excellent. Thanks all. Thanks @Studio LFP. > > On Oct 13, 10:53 pm, Studio LFP wrote: > > Check out this link

[android-developers] Re: major problem with network location fixes and their timestamps

2011-10-13 Thread Studio LFP
Can't say that I've seen that before. I've only used the GPS a small to medium amount, but seems a little weird. Is the GPS hardware not able to get a fix and causing your logic to drop back to the network GPS? If so, it might be that. Is it happening on multiple different devices and how many

[android-developers] Help me Help me. HTML5 and Android

2011-10-13 Thread dodanhhieu
who can give a few tutorial develop app HTML5 on Android. 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 group, send email to android

[android-developers] Camera Built -in App

2011-10-13 Thread nageswara rao rajana
Hi, I integrated built-in app in my application, and i am saving the image captured in sdcard in seperate folder. But the same image also saving in " /sdcard/DICM/Camera/withdate.jpg". But i dont this to happen what i have to do. Please help me. Thanking you, Nagu. -- You receive

[android-developers] Re: terminating the application in android issue

2011-10-13 Thread Studio LFP
Have you tried android:clearTaskOnLaunch on your base activity in the AndroidManifest.xml? http://developer.android.com/guide/topics/manifest/activity-element.html#clear Steven Studio LFP http://www.studio-lfp.com On Thursday, October 13, 2011 7:37:52 AM UTC-5, P B Lal wrote: > > Dear All Exp

[android-developers] Re: An application that hosts a set of other applications

2011-10-13 Thread droid-stricken
Excellent. Thanks all. Thanks @Studio LFP. On Oct 13, 10:53 pm, Studio LFP wrote: > Check out this link: > > http://developer.android.com/guide/market/billing/index.html > > That's the overview and there are more links at the bottom of that page to > help get you up and running. > > Steven > Stud

[android-developers] Re: Vibrate Trigger on Android Device

2011-10-13 Thread Studio LFP
Have you tried this out? http://developer.android.com/reference/android/webkit/WebView.html#addJavascriptInterface%28java.lang.Object,%20java.lang.String%29 I haven't used it yet, but might be what you are looking for. Steven Studio LFP http://www.studio-lfp.com On Thursday, October 13, 2011 8

[android-developers] Re: Android Tablet Internal Storage

2011-10-13 Thread Studio LFP
See if this helps out: StatFs sfStats = new StatFs( this.getFilesDir().toString() ); Log.i( "SpaceCheck", "Free (bytes): " + ( sfStats.getAvailableBlocks() * sfStats.getBlockSize() ) ); That should get you the directory to the applications internal storage (hidden from the user unless rooted) a

[android-developers] Re: Fragment visibility after transaction

2011-10-13 Thread Studio LFP
You should be able to do this in the fragment itself when it shows itself. Check out the flow-chart on the right hand side of this page: http://developer.android.com/guide/topics/fundamentals/fragments.html#Creating Whenever any fragment gets shown and has already been created, it goes back to

[android-developers] Re: please help: broadcast receiver does not execute code

2011-10-13 Thread Studio LFP
So it seems like it is skipping that step? Or is it just stopping before that step? Steven Studio LFP http://www.studio-lfp.com On Thursday, October 13, 2011 11:29:40 AM UTC-5, John Goche wrote: > > > Hello, > > I am having the following problem and was wondering whether > anyone here could be

[android-developers] Re: Service BroadcastReceiver and Activity

2011-10-13 Thread Studio LFP
On the line that says: showScreen( getApplicationContext() ); Try changing it to: showScreen( context ); That might not be it, but it's best to use the context that is being passed to you in the onReceive. If that doesn't work, please post the error so we can help you more. Steven Studio LFP

[android-developers] Re: Graphical anomaly with hints disappearing. Can anyone explain?

2011-10-13 Thread Studio LFP
Thanks for the heads up. You might want to see if this bug has been filed at: http://code.google.com/p/android/issues/list If it hasn't, you may want to drop it in there so others can find the workaround easier and the development team has a better spot to keep track of it. Steven Studio LFP

[android-developers] Re: An application that hosts a set of other applications

2011-10-13 Thread Studio LFP
Check out this link: http://developer.android.com/guide/market/billing/index.html That's the overview and there are more links at the bottom of that page to help get you up and running. Steven Studio LFP http://www.studio-lfp.com On Thursday, October 13, 2011 10:14:54 PM UTC-5, droid-stricken

[android-developers] Re: An application that hosts a set of other applications

2011-10-13 Thread droid-stricken
Thanks for all the inputs. I like the in-app purchase solution the best since that fits my needs the best. Any pointers on how to realize this solution is greatly appreciated. I am not looking for code per-say but any more information on this methodology would help greatly. Thanks. On Oct 13,

[android-developers] Re: android.text.format.DateFormat.format performance

2011-10-13 Thread Studio LFP
It is slow and so is String.format(). I've been messing around with it a bit and here is a *rough *sample I tested: private static final String DATE_AM_PM[] = { "am", "pm" }; private static Date dFormat = new Date(); private static int iHour, iAMPM; public static String formatDate( long lTimesta

[android-developers] Re: Last Market Update : app search fail ?

2011-10-13 Thread Peter Sinnott
I think it used to be on the known issues page. https://www.google.com/support/androidmarket/developer/bin/static.py?page=known_issues.cs I don't see it now. Would be nice if they fixed it before removing it. You can report it http://www.google.com/support/androidmarket/bin/request.py?contact_t

[android-developers] Re: Last Market Update : app search fail ?

2011-10-13 Thread Thomas
I have an app "portals" which does not show up on my Droid X2 even though it claims there are 1800 or so it only shows up 10 or 12 and none are mine. Other people with other flavors of Androids have no trouble finding it. When I look for one of my other apps "Fly away Home", Android market finds an

[android-developers] Finally someone at Google gets it - Please read you might like it

2011-10-13 Thread alexdonnini
Hello, I don't know how many of you have read this. I have stopped paying too much attention to the postings on this group because of the problem highlighted by the writer. Perhaps, someone has already posted about this article. If this is the case, I apologize in advance for the duplication and w

Re: [android-developers] Re: Soft Home Button Makes Games Suck on Android

2011-10-13 Thread TreKing
On Thu, Oct 13, 2011 at 8:30 PM, Christopher Van Kirk < christopher.vank...@gmail.com> wrote: > A better approach is simply to capture the button event and handle it > yourself. "In a nutshell, the problem stems from accidentally hitting the home key." You can't handle the Home key. --

Re: [android-developers] Re: Soft Home Button Makes Games Suck on Android

2011-10-13 Thread Christopher Van Kirk
You can. It's very simple to apply a uniform rotation to your models. It would be strange for the user though, I think. A better approach is simply to capture the button event and handle it yourself. On 10/14/2011 8:43 AM, Darren K wrote: Here's a weird idea... if you need controls at the botto

[android-developers] Re: Soft Home Button Makes Games Suck on Android

2011-10-13 Thread Darren K
Here's a weird idea... if you need controls at the bottom of your screen, can you set up the game to be displayed upside down? Could be a pain to develop it that way, though... -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to t

[android-developers] Re: android.text.format.DateFormat.format performance

2011-10-13 Thread Zsolt Vasvari
Sure, if you don't care about localization issues. On Oct 14, 5:26 am, Thierry Legras wrote: > Hi, > > I am optimizing the critical parts of my code, and I coming to some > ResourceCursorAdapter bindView method. > Though the method is quite long, I saw on traceview that only 2 lines are > taking

[android-developers] Sensor.TYPE_GRAVITY and Sensor.TYPE_LINEAR_ACCELERATION

2011-10-13 Thread nunojpg
Are Sensor.TYPE_GRAVITY and Sensor.TYPE_LINEAR_ACCELERATION just low- pass and high-pass filtered versions of Sensor.TYPE_ACCELEROMETER or do they integrate any kind of Gyro information to find this better? I can't find it explained on the documentation... Regards, Nuno -- You received this mes

[android-developers] Ringtones and RIAA

2011-10-13 Thread mrqzzz
Hi, i am trying to understand if i am going to get in trouble if i publish a soundboard with a dozen of pieces of famous soundtracks (star wars, superman,etc..) having a lentgh of about 30 secs. or 2 mins. The app allows users to set the tunes as ringtone. Will RIAA sue me? What can i do to preve

Re: [android-developers] Last Market Update : app search fail ?

2011-10-13 Thread Justin Anderson
*> Am i missing something?* Probably not... welcome to the wonderful world of the Android Market! Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Thu, Oct 13, 2011 at 5:41 PM, mrqzzz wrote: > Hi. > Since the last Market update (about 1 week ago now) i

[android-developers] Re: This application is available to over 0 devices

2011-10-13 Thread John Gaby
You wer correct in that when I activated the APK the number is shown correctly. Thanks for your help. On Oct 12, 7:38 pm, J Handal wrote: > "Are you saying that I will not be able to see the correct number of > devices until I activate the APK " > > Yes. > > Then you click on publish. -- You r

[android-developers] Last Market Update : app search fail ?

2011-10-13 Thread mrqzzz
Hi. Since the last Market update (about 1 week ago now) i experience what i suppose is wrong: Pressing the lens on the top right and typing "funny sounds" returns "8767 results" in the top label, but scrolling down i get only 8 apps in the list (and my app is not showing...). Am i missing somethi

[android-developers] Re: I want to know how can I make the cell take input from the soft keypad ?

2011-10-13 Thread mellery451
hmm - seems like you might want to just add a TableLayout (http:// developer.android.com/guide/topics/ui/layout-objects.html#tablelayout) to your main view at runtime and then create EditText controls in each TableRow. Of course, if your layout can be static (fixed number of rows/cols), then you ca

[android-developers] Re: An application that hosts a set of other applications

2011-10-13 Thread Studio LFP
You might want to check out the in-app purchase option if you are trying to sell each one separately but also as a group. One option is to have the main package that would include all the applications as sections. Each section could be a limited free version and then use in-app purchase to acti

Re: [android-developers] Re: Stored files on sdcard deleted during uninstall or update

2011-10-13 Thread Yves Liu
Thanks Llanox, this is what I will try. On Wed, Oct 12, 2011 at 4:31 AM, Llanox wrote: > That is a bad idea too? > No, If you don't need store private data there. > >  Should I use /companyname on sdcard > directly? > > In API Level 8 or greater, you could use > getExternalStoragePublicDirectory(

[android-developers] Error on manifest

2011-10-13 Thread deloupy jp
may be can you help me, because I'm perplex about the jungle of case for manifest publication I make an appli OK in eclipse. I update x times my manifest and nothing run in installation ??? Can you say me if my manifest is OK ?? Because, even my appli is on market nobody can install it... All d

Re: [android-developers] Registering Intent for Sending a link / web page

2011-10-13 Thread Markus Wolff
Aaah, yes, thanks for the hint - logcat indeed revealed the secret: The intent that's fired is actually CHOOSER, not SEND - despite everything I've read in countless tutorials. Alright, then :-) Thanks a lot! -- You received this message because you are subscribed to the Google Groups "Android

Re: [android-developers] Can we open the Market's search activity through intent?

2011-10-13 Thread Justin Anderson
1) What is the Market's black search activity? 2) http://tinyurl.com/42texbr Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Thu, Oct 13, 2011 at 3:31 PM, Build account wrote: > Hello. > > Is there any intent option to open the Market's black search act

Re: [android-developers] An application that hosts a set of other applications

2011-10-13 Thread Justin Anderson
If you REALLY want to host an app inside your main app, I believe it is doable, but I highly recommend you do it a different way. Just use intents to start the apps from the main one. If you are hell bent on hosting the app inside the main one, then you need to make sure that all the apps are sig

[android-developers] Can we open the Market's search activity through intent?

2011-10-13 Thread Build account
Hello. Is there any intent option to open the Market's black search activity? and How to just launch the Market app? -- 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 T

Re: [android-developers] An application that hosts a set of other applications

2011-10-13 Thread Mark Murphy
On Thu, Oct 13, 2011 at 5:17 PM, droid-stricken wrote: > I have posted this question on StackOverFlow. So apologies for those > that find this redundant - but i could not get any ideas (yet) from > that forum. Your question is not really a programming question, and so is not terribly suitable for

[android-developers] android.text.format.DateFormat.format performance

2011-10-13 Thread Thierry Legras
Hi, I am optimizing the critical parts of my code, and I coming to some ResourceCursorAdapter bindView method. Though the method is quite long, I saw on traceview that only 2 lines are taking 40% of the time in traceview; those are call to DateFormat: ((TextView)view.findViewById(R.id.EPG_list_it

[android-developers] An application that hosts a set of other applications

2011-10-13 Thread droid-stricken
Hi All, I have posted this question on StackOverFlow. So apologies for those that find this redundant - but i could not get any ideas (yet) from that forum. So, i repeat here: - I have half a dozen apps that i want to put on Google Market. One of them are ready and the other are in progress.

Re: [android-developers] Re: Custom DialogPreference and PreferenceManager.setDefaultValues issue

2011-10-13 Thread Thierry Legras
Okay, I give up. My preference default value will be copied in the preference access code as well: value = sharedPref.getInt(mykey,myDirtyHardcodedDefaultValue ); If ever someone has a better solution, it will be welcome :) Thierry. 2011/10/11 Thierry Legras > Hi Ibendlin, > > Thanks for he

Re: [android-developers] Game dev : Body of a bullet

2011-10-13 Thread TreKing
On Thu, Oct 13, 2011 at 2:18 PM, noob_boy wrote: > Can anybody please point me to something - a tutorial or sample code? > This isn't Android specific - try a game-development forum like GameDev.net ? --

Re: [android-developers] Get Application Context After Force closed

2011-10-13 Thread Kostya Vasilyev
I'm not sure that this exception has anything to do with application vs. non-application context, or perhaps it's more complicated than usual. Exception : java.lang.IllegalStateException: Could not find OpenHelperClass because none of its generic parameters extends OrmLiteSqliteOpenHelper: null

Re: [android-developers] Get Application Context After Force closed

2011-10-13 Thread Manikandan M
i tried all cases: *context.getApplicationContext() , context, this*. but i returns same exception. Thanks in advance. On Fri, Oct 14, 2011 at 1:01 AM, Manikandan M wrote: > Hi steven, > > Thanks for the reply. > > yes the context which i used is receiver context only but i dont have any > luck

Re: [android-developers] Get Application Context After Force closed

2011-10-13 Thread Manikandan M
Hi steven, Thanks for the reply. yes the context which i used is receiver context only but i dont have any luck. it through same exception. On Fri, Oct 14, 2011 at 12:52 AM, Studio LFP wrote: > Try using the context that is passed to the receiver instead of the > application context. The appli

Re: [android-developers] Get Application Context After Force closed

2011-10-13 Thread Studio LFP
Try using the context that is passed to the receiver instead of the application context. The application context is different and I believe they recommend not using it unless it is for very specific purposes. Steven Studio LFP http://www.studio-lfp.com On Thursday, October 13, 2011 1:33:46 PM

[android-developers] Game dev : Body of a bullet

2011-10-13 Thread noob_boy
Hi, I have tried and tried but I cannot create the body of a bullet. I am using a physics engine (box2D) and am trying to create a bullet that will hit walls and richochet or hit obstacles and richochet. I want to create bullet behaviour like the stupid zombie game. Can anybody please point me to

Re: [android-developers] Registering Intent for Sending a link / web page

2011-10-13 Thread TreKing
On Thu, Oct 13, 2011 at 7:28 AM, Markus Wolff wrote: > Can anyone offer any pointers to what I'm doing wrong? Maybe take out the http scheme - a URL in a browser is just text. Also, look at LogCat when you hit "Share Link", the system might spit out info about the intent it's launching and thus

Re: [android-developers] Finding the Users Nearest Places

2011-10-13 Thread TreKing
On Thu, Oct 13, 2011 at 3:12 AM, Murali wrote: > what can i do..? > Read this http://catb.org/~esr/faqs/smart-questions.html Then clarify what you're asking. - TreKing

Re: [android-developers] normals

2011-10-13 Thread Christopher Van Kirk
On 10/14/2011 2:50 AM, bob wrote: Is there any way to specify normals in OpenGL on Android 1.6? I want to do shading, but I don't want to abandon the 1.6ers. . Bind the normals to an array whose elements match your vertices, then use glAttribArray to load them. Or you can use a buffer. -

[android-developers] normals

2011-10-13 Thread bob
Is there any way to specify normals in OpenGL on Android 1.6? I want to do shading, but I don't want to abandon the 1.6ers. . -- 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@googleg

Re: [android-developers] google direction api

2011-10-13 Thread Mark Murphy
This has nothing to do with Android. One would imagine that, somewhere out on the Internet, there is a support resource for Google Maps API. On Thu, Oct 13, 2011 at 2:06 PM, Goutom wrote: > Hi > I want to get direction between two geopoints and using web service > describes in this > link http://

Re: [android-developers] Get Application Context After Force closed

2011-10-13 Thread Manikandan M
Hi Please help me, I am struggling with this problem almost a day. On Thu, Oct 13, 2011 at 5:57 PM, Manikandan M wrote: > Hi > > I integrated c2dm in my application its working fine. once c2dm > notification came i do some database operation so i need the context > to create OrmLiteSqliteOpenHel

Re: [android-developers] Broadcast intent for Data Tx and Rx for an App in Android device

2011-10-13 Thread Mark Murphy
On Thu, Oct 13, 2011 at 2:08 PM, Ranjan A R wrote: > 1) If there a way android sends broadcast as and when App does Tx and > Rx of data packets. No. > b) There is no way I can get Tx and Rx with respect to time. Sure you can. It's called "sampling". -- Mark Murphy (a Commons Guy) http://commo

Re: [android-developers] NFC implementation

2011-10-13 Thread Mark Murphy
Here's one from one of my books: https://github.com/commonsguy/cw-advandroid/tree/master/NFC/URLTagger On Thu, Oct 13, 2011 at 2:19 PM, ANKUR GOEL wrote: > Hi all > please provide me some sample programs of NFC excluding from api demo > program. > or some reference links > > Thanks and Regards:-

Re: [android-developers] switching between activities

2011-10-13 Thread TreKing
On Thu, Oct 13, 2011 at 7:08 AM, vani reddy wrote: > How to switch to different activity without calling > Intent intent = new Intent(CurrentActivity.this,NewActivity.class); > startActivity(intent); > I dont want to call oncreate at all? > You have to call onCreate at least the first time you .

[android-developers] NFC implementation

2011-10-13 Thread ANKUR GOEL
Hi all please provide me some sample programs of NFC excluding from api demo program. or some reference links Thanks and Regards:- Ankur Goel 09019040351 S/W Engg. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group,

[android-developers] Broadcast intent for Data Tx and Rx for an App in Android device

2011-10-13 Thread Ranjan A R
Hello all, I would like to know: 1) If there a way android sends broadcast as and when App does Tx and Rx of data packets. 2) If so, how can I register for that broadcast. Reason: The TrafficStats, Api google provides is not helpful for me, I want to display graph of Tx and Rx of every App with

[android-developers] google direction api

2011-10-13 Thread Goutom
Hi I want to get direction between two geopoints and using web service describes in this link http://code.google.com/apis/maps/documentation/directions/ . Using this url ( http://maps.googleapis.com/maps/api/directions/json?origin=23.884228857253493,90.40052890777588&destination=23.738054845909

[android-developers] Re: working with tabs (tabhost)

2011-10-13 Thread Kristoffer
Hello. Thanks for a good answer. Have a nice day. On 12 Okt, 05:21, Subin Sebastian wrote: > Hi Kristoffer, > > Hope you were following the tutorial I've posted in the last response. I've > figured out a way to do your requirement. The idea is to clear all the tabs > which is loaded before in on

[android-developers] Re: Graphical anomaly with hints disappearing. Can anyone explain?

2011-10-13 Thread darrinps
It did for me as well. If you remove top though, it goes away. This is a bug, albeit a lesser one than I thought at first as long as someone knows the work around. On Oct 8, 11:00 am, Studio LFP wrote: > I tested the following code: > > android:layout_height="fill_parent" android:layout_weight="

[android-developers] Re: Hi this is basha

2011-10-13 Thread Alfdevel
Hi, you could use AChartEngine :http://www.achartengine.org/ On 13 oct, 13:16, johny basha wrote: > hi can any help me > > i am new android developer. i want to display a chart that should be updated > at run time with the user's data -- You received this message because you are subscribed to

Re: [android-developers] Problms

2011-10-13 Thread Appaholics
This is an SDK support list. For your phone support please use other forums. Thanks On Thu, Oct 13, 2011 at 4:29 PM, amjad yoosuf wrote: > Dear > > Am using new Samsung Galaxy S i9000 Phone But i cant create my Android > Account I just try to download some applications But that time see in > thi

[android-developers] Registering Intent for Sending a link / web page

2011-10-13 Thread Markus Wolff
Hi, I'm trying to register an intent so that my app pops up as a possible choise when choosing "Share link" from the browser's context menu or "More -> Share page" from the browser's application menu. To do this, I have so far created a new activity called "ShareActivity" and updated the manifest

[android-developers] Re: Android game programming

2011-10-13 Thread Jordi Puigdellívol Hernández
You can try andengine, it has some samples that may help you -- 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-deve

[android-developers] Apply custom effect to camera preview

2011-10-13 Thread Jordi Puigdellívol
Hi guys, I want to add some effects to the camera preview, I found out that the best way is to pass it to a opengl texture and display it over the Surface, I found an example that gets the luminance and displays it, however I want to use the RGB image to apply my efects, is there an easy way to ac

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

2011-10-13 Thread apalsson
Actually http://android.git.kernel.org/ is up again, but still dreams of electric sheep. No repo yet available. But it's a promising start and hopefully we'll see some sources again in a week or two. :) -- You received this message because you are subscribed to the Google Groups "Android Develo

[android-developers] OpenGL reinitialization in Android

2011-10-13 Thread Jigar
We are trying to re-initialize OpenGL instance on Android in the SurfaceFlinger. For this, I am calling an API in SurfaceFlinger implemented by us. This API inturn speaks with OpenGL through DisplayHardware. Now, to re-initialize OpenGL, first I flush the existing OpenGL instance & then recreate a

[android-developers] Get Application Context After Force closed

2011-10-13 Thread Manikandan M
Hi I integrated c2dm in my application its working fine. once c2dm notification came i do some database operation so i need the context to create OrmLiteSqliteOpenHelper object. OrmLiteSqliteOpenHelper lDatabaseHelper = OpenHelperManager.getHelper(context.getApplicationContext()); This is fine i

[android-developers] Problms

2011-10-13 Thread amjad yoosuf
Dear Am using new Samsung Galaxy S i9000 Phone But i cant create my Android Account I just try to download some applications But that time see in this message *There are no Android phones associated with this account. Please sign in with a different account.* -- * Amjath Yoosuf* -- You rece

[android-developers] Re: Http Live Streaming

2011-10-13 Thread zafera
Here is a test stream link from microsoft you can type this to android device's web browser and see if it plays the video. httplive://mediadl.microsoft.com/mediadl/IISNET/SmoothMedia/iPhone/bbb/output/test.m3u8 Zafer On 13 Ekim, 10:04, bhargavi wrote: > Hi, >     Thanks for the response,i wante

[android-developers] Re: How to get class file from APK

2011-10-13 Thread ven
http://stackoverflow.com/questions/3593420/android-getting-source-code-from-an-apk-file -- 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,

Re: [android-developers] Do I need to buy Google Maps license for Android?

2011-10-13 Thread Appaholics
It is free for any use as long as you leave their logo intact and visible. AFAIK. Thanks On Thu, Oct 13, 2011 at 1:55 PM, elFerZur wrote: > I want to develop an Adroid App (for internal use, not for Android > Market) that uses Google Maps Api to view vehicles position in real > time over maps.

[android-developers] SoftPhone

2011-10-13 Thread papar
Hallo allemaal, Ik wil graag weten hoe kan ik een softphone voor android maken? Is er een tutorial of gids of example? Is er een opleiding in dit richting? Groetjes, Papar. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this gr

Re: [android-developers] My app is on market but any device can install it

2011-10-13 Thread Appaholics
Could you tell us the name? Thanks On Thu, Oct 13, 2011 at 7:57 PM, deloupy jp wrote: > Hi, > > 1) We can't find our appli in android market, only in our developer > account . > > It has been developed on eclipse and tested successfully on samsung galaxy > 2 > We can't find any relevant reas

[android-developers] Finding the Users Nearest Places

2011-10-13 Thread Murali
I finished the code for user curretn location .i done json parsing to get nearest places but i get only users current location only ..what can i do..? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to andr

[android-developers] Service BroadcastReceiver and Activity

2011-10-13 Thread Diego Fernandez
Hello to all, I have read something about how to launch a Activity from BroadcastReceiver, hence now I am reached the point where I really cant not find the answer to... why is closing my application?. I will explain the idea of ​​the application: It consists of a main screen "main" that has only

[android-developers] Android Tablet Internal Storage

2011-10-13 Thread ramya
Hi, 1)I am converting an ipad project to android.In doing so,in ipad version ,I can save the internal files in bundle (called Bundle directory) and all the files are stored under documents which is internal to app. In android we have /data/data/{package name}/files My Question is I should be able

[android-developers] Do I need to buy Google Maps license for Android?

2011-10-13 Thread elFerZur
I want to develop an Adroid App (for internal use, not for Android Market) that uses Google Maps Api to view vehicles position in real time over maps. The application is not for comercial use, only for few users that have android phones, and want to know the position of vehicles over Google Maps. D

[android-developers] Robotium Vs Monkeyrunner

2011-10-13 Thread Mahendran
I'm new to Android and I'm trying to understand 1. Which is better tool for testing both Native app. and Web based application? 2. MonkeyRunner code can be run in mobile device or can be done only in the SDK? Thanks, Mahendran -- You received this message because you are subscribed to the Googl

[android-developers] Gingerbread boot time page fault

2011-10-13 Thread Christian Pinto
Hello everybody, i'm working on the porting of Android gingerbread on an ARM based virtual platform, based on ARM Fast Models Emulator (Cortex-a9 is the target architecture). I was able to patch a Linux-2.6.38 kernel which works pretty good with some releases of Android and the virtual platform de

[android-developers] terminating the application in android issue

2011-10-13 Thread Uberall, Android
Dear All Experts, I have developed my own application but I am unable to close it through coding. I have tried following ways (a) System.exit(0) (b) android.os.Process.killProcess(android.os.Process.myPid()); (c) super.destroy() (d) this.finish(); (e) .this.getParent().finish(); but these a

[android-developers] My app is on market but any device can install it

2011-10-13 Thread deloupy jp
Hi, 1) We can't find our appli in android market, only in our developer account . It has been developed on eclipse and tested successfully on samsung galaxy 2 We can't find any relevant reason for dysfunction of our application. When i want to install on my mobile, it's not OK too. Thanks f

[android-developers] Fragment visibility after transaction

2011-10-13 Thread Nick Parker
Hello, I am using the fragment compatibility library and have a question about fragment transactions. I am using a third-party action bar and two fragments in this scenario. Each fragment updates the user interface of the outside action bar when they are displayed. When displaying the first fra

[android-developers] Where could I download CTS 2.3_r9 source code?

2011-10-13 Thread Enrico
ATT -- 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 options, vis

[android-developers] I want to know how can I make the cell take input from the soft keypad ?

2011-10-13 Thread sunny
Hi, I am a newbie to Android development. I have created a grid of rows x columns by creating a class which extends a View and then painting the grid lines on the canvas. Then I was able to pop up the soft keypad when a user touches any cell on the grid. 1) I want to know how can I make the cell

[android-developers] Re: Two menu buttons in Honeycomb?

2011-10-13 Thread Darren K
I have this exact same problem. Pressing the on in the system bar expands the one on the action bar. I have set targetSdkVersion to 11. Also tried it with 13. There must be some exception that both of us have found to the rule not to show the system bar "legacy" menu button when targeting 11.

[android-developers] how to insert image into listview and text also in list view

2011-10-13 Thread shital suryawanshi
hi if any one have information about that pls send me thanks shital -- 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 and

Re: [android-developers] plz help....

2011-10-13 Thread Divyata P
nope.. not malware!! jus to make an app for security purpose.. On Thu, Oct 13, 2011 at 3:23 AM, Kim Brorsson wrote: > Someone making malware, aye? > > Den 12 okt 2011 13.06 skrev "Divyata Panchal" >: > >> how to stop uninstallation of any application in android...? >> >> plz help.. >> >

[android-developers] please help: broadcast receiver does not execute code

2011-10-13 Thread John Goche
Hello, I am having the following problem and was wondering whether anyone here could be so kind so as to help me. I am having a broadcast receiver in my code that opens a database and sets an alarm. However the code that sets the alarm is never called as shown in the adb logcat output. What is int

Re: [android-developers] Re: الانظمام الي هذا المجموعة

2011-10-13 Thread ourunix
同秀伟大美丽的方块字 From: hongbosb Sent: Thursday, October 13, 2011 10:58 PM To: android-developers@googlegroups.com Cc: mohammed@hotmail.com Subject: [android-developers] Re: الانظمام الي هذا المجموعة 欢迎加入android -- You received this message because you are subscribed to the Google Groups "Androi

[android-developers] Re: الانظمام الي هذا المجموعة

2011-10-13 Thread hongbosb
欢迎加入android -- 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 opti

  1   2   >