[android-developers] Live video streaming over website

2011-08-23 Thread Ankit Kasliwal
Hello Everyone, Can any one tell me it's possible to do live video streaming from android phone to over web (For ex. i have web site where i put some link like link1, link2 and other on click of any link it open my live cam if i open my phone camera for video receding ) In short I want to show my

[android-developers] Re: image won't show

2011-08-23 Thread Jeremy Dagorn
Hi, Why you don't do something like that : String imageUrl = "file:///android_asset/smiley.png"; WebView wv = new WebView(this); // or findViewById in your case wv.loadUrl(imageUrl); On Aug 23, 9:49 pm, bob wrote: >                 Anyone know why this image won't show? > > WebView wv = (WebV

[android-developers] Re: Determining audio decoders available

2011-08-23 Thread James
Hi Mark, 1,This is only sample code demonstrate how to do it. As I have notified, it even *may not pass compile*. 2,Do you think any OEM who support some kind of codec, But distribute a device without a built-in corresponding media player ?? One thing more, My sample code could also detect if any 3

[android-developers] Communicating between servlet and activity

2011-08-23 Thread kypriakos
Hi all, I am running a servlet on iJetty that uses startActivity(intent) to start an activity. I can send data to the activity through Bundles but not sure how to send data back from the activity. I cannot use the startActivityForResult since the servet extends the HttpServlet. It has however the

Re: [android-developers] Activity remains in focus for some time after calling finish()

2011-08-23 Thread tushar sahni
Hi I have to support multiple resolutions for the game that i have to develop,How can i do this,One Resolution is 320*480 and other is 480 x 800 pixels I have added the following lines in the manifest for supporting to multiple screens If anyone has worked on it can he/she have a look on it R

Re: [android-developers] GoogleTV External Storage

2011-08-23 Thread Jack Deslippe
Yes. And in everyother AVD (and real device) I tested on, there is no problem writing to to sdcard. Only in the new GTV AVD does it fail. On Aug 23, 2011 9:57 PM, "Mark Murphy" wrote: > Just to confirm, you do hold the WRITE_EXTERNAL_STORAGE permission in > your app, right? > > On Tue, Aug 23, 2

Re: [android-developers] Re: Determining audio decoders available

2011-08-23 Thread Mark Murphy
There are a couple of flaws here: 1. /sdcard is probably invalid. 2. This only detects if there is a player advertising that it handles audio/wma files. This does not mean that the player is correct, nor does it mean that anything other than the player can play WMA files (e.g., via MediaPlayer)

Re: [android-developers] GoogleTV External Storage

2011-08-23 Thread Mark Murphy
Just to confirm, you do hold the WRITE_EXTERNAL_STORAGE permission in your app, right? On Tue, Aug 23, 2011 at 10:26 PM, Jack Deslippe wrote: > So, I am using Environment.getExternalStorageDirectory() on the new GoogleTV > emulator.  It returns "/mnt/sdcard" (which should be 100 MB).  But, all >

[android-developers] image won't show

2011-08-23 Thread bob
Anyone know why this image won't show? WebView wv = (WebView) findViewById(R.id.widget30); String html = ""; wv.loadData(html, "text/html", "utf-8"); -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, s

[android-developers] GoogleTV External Storage

2011-08-23 Thread Jack Deslippe
So, I am using Environment.getExternalStorageDirectory() on the new GoogleTV emulator. It returns "/mnt/sdcard" (which should be 100 MB). But, all operations on that directory fail (like trying to make a new directory for example). What is the proper storage space for GoogleTV? Is Environ

[android-developers] Re: Large File Transfers from Phone to remote server

2011-08-23 Thread James
I think there's an easy way to get it work. Since both server and client side are under your control. You may mark the file transfer progress in both/either client/server side each time a package is uploaded. Say, if file transfer get interrupted after transferring total size of 5M data packages. Y

[android-developers] Re: Simulate GPS Failure

2011-08-23 Thread lbendlin
what's wrong with a tinfoil hat? -- 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...@googlegro

[android-developers] youtube chromeless iframe player in android

2011-08-23 Thread doles
Hello! I have a webview in an activity in which I load HTML that loads the youtube html5 player. The rest of the HTML shows up ok in the webview, but my player just doesnt show up. that same html code works great on chrome on my windows laptop and i believe it should work on android's browser,

[android-developers] Re: Determining audio decoders available

2011-08-23 Thread James
Of course there is: - Intent intent = new Intent(android.content.Intent.ACTION_VIEW); Uri data = Uri.fromFile(new File("/sdcard/test.wma")); intent.setDataAndType(data, "audio/wma"); List resolveI

[android-developers] Re: how to retrieve images from a sql database?

2011-08-23 Thread lbendlin
so you have an existing database. Can you look at the relevant table with the Firefox SQLite Manager plugin (on your computer) and see which field type is used for the image column? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post

[android-developers] Re: Trouble programmatically setting default value of a Preference

2011-08-23 Thread lbendlin
this is what helped me in a similar situation http://android-journey.blogspot.com/2010/01/for-almost-any-application-we-need-to.html -- 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@go

[android-developers] Re: Simulate GPS Failure

2011-08-23 Thread davemac
You might try holding it inside your kitchen oven (oven not turned on of course). - dave On Aug 23, 9:07 pm, burton miller wrote: > I'm not sure about the type of failure, because it does not happen in > my code - it happens in the advertiser's code, and some of my users > are getting a dialog t

[android-developers] Re: Soundpool problem

2011-08-23 Thread davemac
SoundPool isn't designed to work with that much "sound". The internal buffer is around 1MB, and that's after decompression from the source file. If you really want to use SoundPool, you're going to have to use less sound. You could try a shorter clip, smaller frequency (8 instead of 44), mono inste

[android-developers] Re: Simulate GPS Failure

2011-08-23 Thread burton miller
I'm not sure about the type of failure, because it does not happen in my code - it happens in the advertiser's code, and some of my users are getting a dialog telling them that 'GPS is failing.' My code fails gracefully on location problems :) If I can repro it, then I can determine which adverti

Re: [android-developers] Activity remains in focus for some time after calling finish()

2011-08-23 Thread Dianne Hackborn
onStop is not called until the other activity has been displayed and is idle. If it is taking a long time to show, run the profiler on your code to see what you are doing that is so slow. On Tue, Aug 23, 2011 at 11:42 AM, Amit wrote: > Hi, > > I am stuck here. I have an activity (say Activity 1

[android-developers] Re: Simulate GPS Failure

2011-08-23 Thread Nathan
On Aug 23, 3:08 pm, burton miller wrote: > I have an app that uses ads for revenue.  And one of my ad vendors is > putting up a show-stopper dialog when GPS is on, but fails.  I can't > tell which one it is. > > How do you simulate GPS failure (while enabled)?  Any ideas? What type of failure?

[android-developers] Determining audio decoders available

2011-08-23 Thread b0b
Is there a sensible way to detect if a particular audio decoder which may or may not be present depending on manufaturers, is available (for example: WMA) ? Right now I'm asking the user. There has to be a better way ? -- You received this message because you are subscribed to the Google Group

[android-developers] Trouble programmatically setting default value of a Preference

2011-08-23 Thread b0b
I have a simple CheckBoxPreference "blargh" defined in an XML file. I want to programatically set its default value with code like this which does not work in subclass of PreferenceActivity: public void onCreate() { addPreferencesFromResource(R.xml.prefs); findPreference("blargh").setDefault

[android-developers] Simulate GPS Failure

2011-08-23 Thread burton miller
I have an app that uses ads for revenue. And one of my ad vendors is putting up a show-stopper dialog when GPS is on, but fails. I can't tell which one it is. How do you simulate GPS failure (while enabled)? Any ideas? -- You received this message because you are subscribed to the Google Grou

[android-developers] Android 3.2 with WXGA (720x1280) resolution bugs in portrait.

2011-08-23 Thread sblantipodi
Hi... I noticed that if I run my app on android 3.2 sdk with a 720x1280 resolution I have some important bugs. If I run the app in landscape (720x1280) the getHeight() and getWidth() from my canvas is correct returning 720 and 1280. If I run the same code in portrait mode (1280x720), getHeight()

[android-developers] Re: Vector

2011-08-23 Thread Chris
> articles = new Vector[9]; try articles = (Vector[]) new Vector[9]; - C -- 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 t

[android-developers] Re: Native SIP Client Device Support List?

2011-08-23 Thread nadam
> Is there a list of currently supported devices I don't know how reliable this is, but you could write a dummy app with a manifest indicating that sip is required. Then upload it in the Android Market Developer Console, but don't publish it, just save it. Scroll down to "Supported Devices" and cli

[android-developers] Vector

2011-08-23 Thread bob
Can someone help me understand why this doesn't work? import java.util.Vector; public class Oracle { public static Vector articles[]; public static void init(){ articles = new Vector[9]; } } -- You received this message because you are subscribed to t

[android-developers] Re: Access to gyroscope under Froyo?

2011-08-23 Thread nadam
Sensor.TYPE_GYROSCOPE is the only way to use the gyroscope in Android. This constant was added before Gingerbread, but you still need Gingerbread in order to use it. The fact that Optimus 2X is still on FroYo is a really bad sign. Just buy one of the other phones that have both gyroscope and Ginge

[android-developers] Soundpool problem

2011-08-23 Thread jpathak
Hi, I'm facing a weird problem in soundpool. I try to play a sound with pool.load(AssetFileDescriptor, priority), for an OGG sound (44Khz, stereo, 112Kbps, 29 seconds), and then calling pool.play(). The sound starts to play, however it truncates at around 6 seconds. Also, when I try to loop with l

Re: [android-developers] Server for Android APP

2011-08-23 Thread Diogo Salaberri
? On Tue, Aug 23, 2011 at 3:18 PM, Michael Banzon wrote: > OT: Did your website just get "android-developers'ed" or does it "509" > all the time? ;-) > > On Tue, Aug 23, 2011 at 7:43 PM, Kevin Anthony > wrote: > > I use a basic DJango JSON backend, it works well for me > > > > On Tue, Aug 23, 2

[android-developers] Activity remains in focus for some time after calling finish()

2011-08-23 Thread Amit
Hi, I am stuck here. I have an activity (say Activity 1) with a button. On click of the button I am starting a new activity (say Activity 2 )and then calling finish(). But what I see is, before starting Activity2, Activity1 remains in the focus for a while (5-7 secs approximately) and then it desa

Re: [android-developers] Server for Android APP

2011-08-23 Thread Greg Donald
On Tue, Aug 23, 2011 at 1:18 PM, Michael Banzon wrote: > OT: Did your website just get "android-developers'ed" or does it "509" > all the time? ;-) "android-developers'ed" Lol. -- Greg Donald -- You received this message because you are subscribed to the Google Groups "Android Developers"

Re: [android-developers] Server for Android APP

2011-08-23 Thread Michael Banzon
OT: Did your website just get "android-developers'ed" or does it "509" all the time? ;-) On Tue, Aug 23, 2011 at 7:43 PM, Kevin Anthony wrote: > I use a basic DJango JSON backend, it works well for me > > On Tue, Aug 23, 2011 at 1:41 PM, Diogo Salaberri wrote: >> >> Hello guys.. >> I want to dev

Re: [android-developers] Server for Android APP

2011-08-23 Thread Kevin Anthony
I use a basic DJango JSON backend, it works well for me On Tue, Aug 23, 2011 at 1:41 PM, Diogo Salaberri wrote: > Hello guys.. > > I want to developer an APP that will request and receive information from a > remote server, basic exchange of information, like a json or xml. How can I > do this,

[android-developers] Server for Android APP

2011-08-23 Thread Diogo Salaberri
Hello guys.. I want to developer an APP that will request and receive information from a remote server, basic exchange of information, like a json or xml. How can I do this, I know. But what is the better option for the server ? I want a server that stay waiting for my requests. Whats the better o

[android-developers] Re: how to retrieve images from a sql database?

2011-08-23 Thread Drezden
I'm not sure why you wouldn't have access to the MediaStore, it's been available since API level 1. If you really want to try putting the images directly in the database, just Google something like "Android SQLite Blob" because that's what you'll need to use. I'm sure there are examples out there

[android-developers] Re: Change spinner's text color?

2011-08-23 Thread Streets Of Boston
Look at the adapter you use for putting data into the spinner. The adapter should have the methods getView and getDropdownView. If you want to change the text-item in the spinner itself, implement getView and inflate a View from a layout (xml file in /res/layout directory) that contains a TextVie

Re: [android-developers] how to get the view size after orientation changed

2011-08-23 Thread Dianne Hackborn
You need to participate in the view hierarchy as a layout manager, do get the onSizeChanged() calls and such. Code like this is almost guaranteed to be broken. If you want to do stuff based on view layout, implement a layout manager. On Tue, Aug 23, 2011 at 4:19 AM, Ralph Bergmann wrote: > Hi,

Re: [android-developers] Copying Application Files on android device and apk versioning Information

2011-08-23 Thread Dianne Hackborn
Generally, you don't. Android isn't Windows, and does some things differently than Windows. One of those is that application files stay packed in their .apk, and there are APIs to retrieve the data from the .apk. There are only very few situations where you should ever unpack the files from the

Re: [android-developers] Android Inapp Purchase Server Error

2011-08-23 Thread TreKing
On Tue, Aug 23, 2011 at 8:06 AM, vinith wrote: > I receive Server error "A server error has occurred" while doing in- app > purchase. This occurs after entering credit card details and clicking on buy > button. > Please help. > Are you a developer with a problem with your app? Or are you user ge

[android-developers] Re: Change spinner's text color?

2011-08-23 Thread Jump
Did you resolve this paladin? Anyone with some pointers? The spinner does not support android:textColor Thx -- 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 unsubs

Re: [android-developers] Re: Giving licenses as present.

2011-08-23 Thread TreKing
On Tue, Aug 23, 2011 at 9:43 AM, Adam Ratana wrote: > Ahh so you mean when we refund someone's purchase it DOES revoke their > license? Correct. > I've given 2-3 refunds since launch and I was under the impression that > those users will still get to use the app, because they did not cancel t

Re: [android-developers] How to use DOM to get document elements in Android 3.0.1(moto xoom);

2011-08-23 Thread TreKing
On Tue, Aug 23, 2011 at 3:03 AM, Ouds wrote: > InputStream reponsed by apache HttpClient. Well, verify that is valid. Verify the content of the InputStream. Shove it into a BufferedStreamReader and print it out to make sure it is what you think it is. --

[android-developers] Re: How to prematurely stop a long-running SQLite query?

2011-08-23 Thread lbendlin
You have to be careful as the in-Memory database might eat into your RAM allowance and you could get OutOfMemory errors. -- 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.c

[android-developers] Re: NdefPushClient.java, NdefPushProtocol.java, NdefPushServer.java

2011-08-23 Thread Dominik
a good entry point is the StickyNotes application presented at GoogleIO: http://nfc.android.com/ This application exchanges text notes between NFC-enabled Android devices using NdefPush. You see there both how the client and the server are implemented. The server enables NDEF-Push using enable

Re: [android-developers] System server query

2011-08-23 Thread Daniel Drozdzewski
On 23 August 2011 16:10, Nitin Mahajan wrote: > Hi! > > I was just going through the code to understand how the system server > is started. > > I have some query here. Why there is a LOGI saying LOGI("System > server: starting Android runtime.\n"); in file System_init.cpp? *.cpp != *.java -- D

[android-developers] System server query

2011-08-23 Thread Nitin Mahajan
Hi! I was just going through the code to understand how the system server is started. I have some query here. Why there is a LOGI saying LOGI("System server: starting Android runtime.\n"); in file System_init.cpp? We aren't actually starting the Android runtime here. We are just starting the nat

Re: [android-developers] Re: Large File Transfers from Phone to remote server

2011-08-23 Thread Daniel Drozdzewski
On 23 August 2011 16:00, grndvl1 wrote: > I'm not using anything right now have to code it inside the > application I am building...looking for suggestions, source code, > ideas... ok... the way you wrote your post suggested that you already collect the data and send it. time warped anser: Use

Re: [android-developers] Re: Large File Transfers from Phone to remote server

2011-08-23 Thread Jim Graham
On Tue, Aug 23, 2011 at 07:24:42AM -0700, grndvl1 wrote: > Yeah what I am transferring is raw data from a bluetooth custom > device. We collect the data on the phone then transfer that to a > remote server. Is there a way in FTP to continue where you left off > if the transfer gets interrupted?

[android-developers] Re: Large File Transfers from Phone to remote server

2011-08-23 Thread grndvl1
I'm not using anything right now have to code it inside the application I am building...looking for suggestions, source code, ideas... -- 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@g

Re: [android-developers] Re: Large File Transfers from Phone to remote server

2011-08-23 Thread Daniel Drozdzewski
On 23 August 2011 15:24, grndvl1 wrote: > Yeah what I am transferring is raw data from a bluetooth custom > device.  We collect the data on the phone then transfer that to a > remote server.  Is there a way in FTP to continue where you left off > if the transfer gets interrupted?  That is what I a

[android-developers] Re: Copying Application Files on android device and apk versioning Information

2011-08-23 Thread Adam Ratana
Not 100% sure what you are asking, but if you have raw asset files you can put them in an assets folder in your project, and then read from there in your application. On Wednesday, August 10, 2011 2:42:06 AM UTC-4, Jessica wrote: > > HI, > How we can make the apk(on installing) copy the applicat

[android-developers] Re: Giving licenses as present.

2011-08-23 Thread Adam Ratana
Ahh so you mean when we refund someone's purchase it DOES revoke their license? I've given 2-3 refunds since launch and I was under the impression that those users will still get to use the app, because they did not cancel their order via the market. If this is true, then I'm glad no one has t

[android-developers] Re: Large File Transfers from Phone to remote server

2011-08-23 Thread grndvl1
Yeah what I am transferring is raw data from a bluetooth custom device. We collect the data on the phone then transfer that to a remote server. Is there a way in FTP to continue where you left off if the transfer gets interrupted? That is what I am looking for more so since the phone may be slow

Re: [android-developers] view is not getting two values sws_format_name(c->srcFormat), sws_format_name(c->dstFormat)

2011-08-23 Thread Daniel Drozdzewski
On 23 August 2011 15:00, Naveen wrote: > Hi Developers, Hello Developer! > i am using you ffmpeg library . Wrong group. Ask at ffmpeg group: http://ffmpeg.org/pipermail/ffmpeg-user/ Best of luck! -- Daniel Drozdzewski -- You received this message because you are subscribed to the Google

[android-developers] Re: Problem with Socket in AsyncTask

2011-08-23 Thread Ben
Hi! Took me a few days to look at your answer(holiday time^^) and it seems that my solution with manipulating the textview in the "onPostExecute" Method doesnt work stable(I dont get it), so I will try it as you said in the "publish progress" Method, lets hope for the best :D On 16 Aug., 15:4

[android-developers] view is not getting two values sws_format_name(c->srcFormat), sws_format_name(c->dstFormat)

2011-08-23 Thread Naveen
Hi Developers, i am using you ffmpeg library . view is not getting two values sws_format_name(c->srcFormat), sws_format_name(c->dstFormat) so error msg occur ERROR/FFMpegMediaPlayer(3889): AV_LOG_WARNING: No accelerated colorspace conversion found from %s to %s. Here due to this error This bl

[android-developers] Re: how to retrieve images from a sql database?

2011-08-23 Thread Abhi
@Ibendlin - Yes, SQLite on device is what I meant. Sorry about the confusion @Drezden - I somehow don't have that option to add images to MediaStore, keeping the file path in the SQLite database. I would like to still try retrieving those images stored in the database before deciding which way to r

[android-developers] Re: Adding markers to a video recording you take.

2011-08-23 Thread darrinps
Thanks. That's exactly the idea I had too...separate file to keep track of things. The only difference is that instead of something firing off every 100ms or so, I'd just take a time stamp of when the video recording starts and then another one each time the user presses the "Mark" button. I know t

[android-developers] Is Jfreechart engine Suitable for Android Chart?

2011-08-23 Thread s.rawat
HI, I have been struggling a lot in developing the stacked bar chart.I have used the achartengine (a light weight chart engine) to draw the pie and bar charts , but now the requirement has changed and I am supposed to convert the bar charts(attached) of one category to

[android-developers] Re: Adding markers to a video recording you take.

2011-08-23 Thread esse
As far as I know there is no way to use MediaRecorder to associate a marker with the video stream. Unfortunately when you hand the camera object over to the MediaRecorder you really lose access to the camera. The best solution that I can think of is that you associate a data file with the video. B

[android-developers] accelerated colorspace

2011-08-23 Thread Naveen
what is the accelerated colorspace for android video on surface. -- 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] Re: BitmapFactory.decodeStream() blocking

2011-08-23 Thread Streets Of Boston
You can create one Android/DefaultHttpClient per thread. I use a ThreadLocal for this, storing one instance of an HttpClient for each thread. This means that none of the HttpClient instances will have thread-safety issues and the number of HttpClients being created is limited (never more than th

[android-developers] Android Inapp Purchase Server Error

2011-08-23 Thread vinith
I receive Server error "A server error has occurred" while doing in- app purchase. This occurs after entering credit card details and clicking on buy button. Please help. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group

[android-developers] how to get the view size after orientation changed

2011-08-23 Thread Ralph Bergmann
Hi, where is the right point to get the size of a view after the orientation has changed? I have overwritten the onConfigurationChanged method: public void onConfigurationChanged(Configuration newConfig) { super.onConfigurationChanged(newConfig); final int viewWidth = this.content.getWi

Re: [android-developers] Re: how to integrate video codec for video view android

2011-08-23 Thread Appaholics
1) Try bumping your post if it has been more than 48 hours. Also sometimes first time posters are moderated and your message may take a while to appear on the list. 2) We never said that the Android SDK is "lunched" by you. It is not Google's gift either. You are free to use it if you want to. Goo

Re: [android-developers] Re: how to integrate video codec for video view android

2011-08-23 Thread NaveenShrivastva
Android sdk is not lunched by me. it 's Google gift. On Tue, Aug 23, 2011 at 4:07 PM, NaveenShrivastva < kumarnaveen.si...@gmail.com> wrote: > It's not a perfect answer given by you. i have need your hand not this type > of rude words, i am trying also.i am not sleeping here, ===ok > > if y

Re: [android-developers] Re: how to integrate video codec for video view android

2011-08-23 Thread NaveenShrivastva
It's not a perfect answer given by you. i have need your hand not this type of rude words, i am trying also.i am not sleeping here, ===ok if you can not able to help only want any answer to some one then good. else that's bad words written by u.when u can not able to help me then not make fun

Re: [android-developers] Re: how to integrate video codec for video view android

2011-08-23 Thread Appaholics
If you are waiting for August 19 then you have 361 days to wait. I am sure someone will reply as it is almost a year. On Tue, Aug 23, 2011 at 3:57 PM, Naveen wrote: > Android Community not giving me any response of my question.i am > waiting for 19 august. > > what to do now for this type of he

[android-developers] Re: how to integrate video codec for video view android

2011-08-23 Thread Naveen
Android Community not giving me any response of my question.i am waiting for 19 august. what to do now for this type of help.very unhappy with android this limitation. On Aug 19, 6:30 pm, NaveenShrivastva wrote: > On Fri, Aug 19, 2011 at 6:47 PM, Appaholics wrote: > > > > > > > > > > > AFAIK th

Re: [android-developers] Re: Deployment to Android devices from Windows and Mac

2011-08-23 Thread Rathna Kumara Premadasa
Thanks for your great help, I'll try with that references... thanks, -- *Rathna Kumara Premadasa* Sri Lanka. -- 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

Re: [android-developers] Re: Deployment to Android devices from Windows and Mac

2011-08-23 Thread Appaholics
If your plugin doesn't support hardware devices: 1) Use Google's plugin and debug your app. 2) Use ACRA or another bug reporting system to get the bug report from the device. http://code.google.com/p/acra/ 3) Install LogCollector from the market to send yourself the log incase your app crashes.

Re: [android-developers] Re: Deployment to Android devices from Windows and Mac

2011-08-23 Thread Rathna Kumara Premadasa
First one is correct but i want to debug my application using device not to install it. -- *Rathna Kumara Premadasa* Sri Lanka. -- 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] Re: Deployment to Android devices from Windows and Mac

2011-08-23 Thread Rathna Kumara Premadasa
No no i mean any kind of referance.. -- *Rathna Kumara Premadasa* Sri Lanka. -- 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 ema

Re: [android-developers] Re: Deployment to Android devices from Windows and Mac

2011-08-23 Thread Appaholics
Okay let us try again. First confirm some facts for us: 1) You are saying that your wrote your own eclipse plugin for android development and are not using the one provided by Google. 2) You have successfully compiled your app and are trying to install it on your device to test. Are theses state

Re: [android-developers] Re: Deployment to Android devices from Windows and Mac

2011-08-23 Thread NaveenShrivastva
On Tue, Aug 23, 2011 at 3:38 PM, Rathna Kumara Premadasa < rathnakumar...@gmail.com> wrote: > Thanks for all, > > i was not able to find a suitable path please help me... > -- > *Rathna Kumara Premadasa* > Sri Lanka. > > -- > You received this message because you are subscribed to the

Re: [android-developers] Re: Deployment to Android devices from Windows and Mac

2011-08-23 Thread Rathna Kumara Premadasa
Thanks for all, i was not able to find a suitable path please help me... -- *Rathna Kumara Premadasa* Sri Lanka. -- 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@googlegro

[android-developers] how to implement android emoji in our apps?

2011-08-23 Thread vijayakumar M
Hi Guys, how to implement android emoji keyboard in our apps, please any one give me idea or example? thnx urs m.v -- "Nobody can go back and start a new beginning, but anyone can start today and make a new ending" - Thanks, Regards, νιנαソαkum@r M BloG:http://iamvijayakumar.blogspot.com

[android-developers] Re: XML Adapter sample from SDK not compiling

2011-08-23 Thread droidin.net
Is there a reason why Android team fails to address this? I posted the same question on the stackoverflow.com to no avail. There are also compilation problems in Adapters.java. Please refer to http://stackoverflow.com/questions/7139299/android-broken-xml-parsing-example -- You received this me

Re: [android-developers] use listview get web data

2011-08-23 Thread Ratheesh Valamchuzhy
Hi U can use cursor adapter to show the list view or store the values in array adapter and show in the list view 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@googlegro

[android-developers] use listview get web data

2011-08-23 Thread Kavekkb
I write a web to get mysql data. Android already can get web's(mysql) data, but I want to put in listview How can I write this source? -- 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@g

[android-developers] Working with VideoView without calling MediaPlayer.release()

2011-08-23 Thread Guilo
Hi ! Today, this issue http://code.google.com/p/android/issues/detail?id=959 has become really problematic for me. MediaPlayer.release() makes my applications hang for a few seconds very often. As it makes the user experience really unacceptable I have copied the source code from VideoView and

Re: [android-developers] Unable to do "ls" in the device file system to view the logs in the adb shell.

2011-08-23 Thread Nikolay Elenkov
On Tue, Aug 23, 2011 at 4:45 PM, Kumar Bibek wrote: > You dont have permission to run these commands on a commercial device. > Rooting would solve your problem. If the app is debuggable, run-as should work too. Not sure if it is found on all devices though. $ run-as Usage: run-as [] -- You r

Re: [android-developers] How to use DOM to get document elements in Android 3.0.1(moto xoom);

2011-08-23 Thread Ouds
InputStream reponsed by apache HttpClient. From: TreKing Sent: Tuesday, August 23, 2011 1:16 PM To: android-developers@googlegroups.com Subject: Re: [android-developers] How to use DOM to get document elements in Android 3.0.1(moto xoom); On Mon, Aug 22, 2011 at 9:22 PM, Ouds wrote: It is

Re: [android-developers] Unable to do "ls" in the device file system to view the logs in the adb shell.

2011-08-23 Thread Kumar Bibek
You dont have permission to run these commands on a commercial device. Rooting would solve your problem. *Thanks and Regards, Kumar Bibek* * http://techdroid.kbeanie.com http://www.kbeanie.com* On Tue, Aug 23, 2011 at 1:12 PM, s.rawat wrote: > HI All, > I am able to create the logs inside th

[android-developers] Re: How to prematurely stop a long-running SQLite query?

2011-08-23 Thread uday kiran jandhyala
Hi, I remember Sqlite supporting 'In-Memory' DB, which is way faster than normal DB.. Everything that we are doing temporarily, is processed in memory thus no I/O.. It could be one option to try out.. But am not sure if this is do-able on android.. http://en.wikipedia.org/wiki/In-memory_database I

[android-developers] Unable to do "ls" in the device file system to view the logs in the adb shell.

2011-08-23 Thread s.rawat
HI All, I am able to create the logs inside the android file system in /data/data/.When I do cd to this directory it is fine until when I do ls or cat in the adb shell to view the content i am getting*permission denied * .The device is a commercial device(samsung tablet).Is there any way to view th

[android-developers] Re: SQLite: Tables not created onCreate without any error

2011-08-23 Thread philgiese
If you are having trouble with you database, take a look at androrm (http://androrm.com). It helps you with all that creating tables and relations stuff without you having to write any SQL-Statements. Very easy to use! Phil On Aug 22, 11:07 pm, Nico Balestra wrote: > Ok guys.. I've tried and tri

Re: [android-developers] image appearing half only

2011-08-23 Thread Appaholics
That is because a negative value will have the opposite. To move it up from the bottom of the screen use a bottom margin. On Tue, Aug 23, 2011 at 12:49 PM, arun kumar wrote: > android:layout_centerHorizontal="true" android:layout_height="wrap_content" > android:layout_marginTop="-33dp" android

[android-developers] image appearing half only

2011-08-23 Thread arun kumar
Here i given image view i want to move the image top by giving -33 its worked but the image is appearing half only... 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-develo

Re: [android-developers] Audio routing

2011-08-23 Thread Amritendu Biswas
Thanks Mark for your reply. I will post my query in Open Source Android Community. On Tue, Aug 23, 2011 at 12:11 PM, Mark Murphy wrote: > On Tue, Aug 23, 2011 at 2:36 AM, Amritendu Biswas > wrote: >> I am trying to create one application/service which will record incoming >> voice call and auto