Re: [android-developers] XML RPC login failed

2010-09-01 Thread Tsolmon Narantsogt
Actually i don't know. Url is correct i saw it. public static final String HOST = "http://10.0.2.2:8069/xmlrpc/common";; On Thu, Sep 2, 2010 at 1:57 PM, Frank Weiss wrote: > OK. So why is the server returning that HTTP status? My first guess is > the URL is incorrect. What's your guess? > > --

[android-developers] Problem with webview pageUp method

2010-09-01 Thread Brijesh
Hi all, I have a webview in my activity which displays a html file. Now when i call webview.pageUp(); method it calls the onScrollChanged() method many times , i want to find-out when the page is completely scrolled because i want to do write some functions after the scrolling finish ... Thanks

Re: [android-developers] Re: "IllegalArgumentException: parameter must be a descendant of this view" related issue

2010-09-01 Thread Frank Weiss
I'd hazard a guess that it has something to do with android.view.ViewRoot.scrollToRectOrFocus(). Can you narrow it down to some user action that might invoke that method? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group

Re: [android-developers] XML RPC login failed

2010-09-01 Thread Frank Weiss
OK. So why is the server returning that HTTP status? My first guess is the URL is incorrect. What's your guess? -- 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 unsu

Re: [android-developers] XML RPC login failed

2010-09-01 Thread Tsolmon Narantsogt
I know HTTP status 404 means. On Thu, Sep 2, 2010 at 1:33 PM, Frank Weiss wrote: > Are saying that you don't know what HTTP status 404 means? You're > putting me into a crabby mood! > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group.

[android-developers] Re: Issues with Playing 2 videos using HTML5 Video Element in Android

2010-09-01 Thread Darshan
Hi All, I haven't received any responses for a long time. Does anybody know a solution for this issue? Darshan On Jul 29, 10:25 am, Darshan wrote: > Hi All, > > Right now I am building a web page that plays videos using HTML5 > element. > > Here is the sample page: > > **

Re: [android-developers] XML RPC login failed

2010-09-01 Thread Frank Weiss
Are saying that you don't know what HTTP status 404 means? You're putting me into a crabby mood! -- 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 th

[android-developers] AutoCompleteTextView and Ajax-like request

2010-09-01 Thread Ken
Hello, I am trying to implement an AutoCompleteTextView backed by HTTP requests. i.e., the content of the suggestion comes from a web service and is obtained by a HTTP request (for example, the symbol lookup field on Google finance). Here's the code I wrote to initialize the autocomplete field:

Re: [android-developers] Move one screen to another

2010-09-01 Thread Narendra Bagade
create two screen using activity. like activity1 and activity2. suppose u have button on activity1 then write follwing cod in the onclick event of button like Intent obj =new Intent(this,activity.class); startactivity(obj); Regards, Narendra On Thu, Sep 2, 2010 at 10:04 AM, praveena ankitha wr

Re: [android-developers] GOOGLE, WHAT IS GOING ON with the Active Install %? Bug in install to SDCARD is my guess!

2010-09-01 Thread Dianne Hackborn
I don't know about this stuff in Market, so I can't help you there, but I do know that apps on SD is purely a platform feature, Market has no idea about it at all, so it would have nothing to do with this. On Wed, Sep 1, 2010 at 7:57 AM, niko20 wrote: > Yes we have threads about this already but

Re: [android-developers] Re: KeyEvent Methods

2010-09-01 Thread Dianne Hackborn
Well that makes no sense. But... you can use the times in the events, or if you don't like that use SystemClock.uptimeMillis() at whatever points you want to measure the time and compare them. I'm not sure what more I can say here. On Wed, Sep 1, 2010 at 9:33 PM, Tez wrote: > okay. > > I want

Re: [android-developers] Move one screen to another

2010-09-01 Thread praveena ankitha
startActivity(new Intent(.this,.class) ); On Thu, Sep 2, 2010 at 9:56 AM, Gold wrote: > Hi.All, > > I am Beginner for the Android (Previously I was in > Windows mobile application developer ) and I want to Go > >from One Screen to Another Screen But i dont know How is > p

[android-developers] Re: KeyEvent Methods

2010-09-01 Thread Tez
okay. I want to measure the time interval between keypresses. Say A->B time interval 60ms. IF B was presses before A was released, a negative value should be calculated. How Do i do this? On Sep 2, 2:01 am, Dianne Hackborn wrote: > Well they would be 0 for a key down.  They should be different

Re: [android-developers] Move one screen to another

2010-09-01 Thread Tsolmon Narantsogt
Welcome. check this link: http://learnandroid.blogspot.com/2008/01/opening-new-screen-in-android.html Thank you Tsolmon On Thu, Sep 2, 2010 at 12:26 PM, Gold wrote: > Hi.All, > > I am Beginner for the Android (Previously I was in > Windows mobile application developer ) and I want

[android-developers] Move one screen to another

2010-09-01 Thread Gold
Hi.All, I am Beginner for the Android (Previously I was in Windows mobile application developer ) and I want to Go from One Screen to Another Screen But i dont know How is possible, please give me a code for that. -- You received this message because you are subscribed

Re: [android-developers] Reducing Permissions

2010-09-01 Thread Brad Gies
Yes, a contact picker would be great, and would work for me ;), especially if it had the ability to return multiple selections. I would actually like that better than accessing them myself, if it was a standard part of the framework, because then users would be familiar with it, and I wouldn

[android-developers] XML RPC login failed

2010-09-01 Thread Tsolmon Narantsogt
Hi everyone I am trying to build a XmlRpc client for android . i am using http://code.google.com/p/android-xmlrpc/ this lib. But i can't login my xml rpc server. i got below error. org.xmlrpc.android.XMLRPCException: HTTP status code: 404 != 200 help me. Thank you Tsolmon -- You received

[android-developers] Re: How do i switch to new activity from a custom listview ?

2010-09-01 Thread mani
I got it working...!! thanks, - mani On Sep 2, 10:53 am, mani wrote: > Thanks Mark.!! > > I tried implementing the activity.this.startActivityForResult() > > [ //results.this.startActivityForResult(myIntent, 0); ] > > I get error like > "No enclosing instance of the type results is accessible in

[android-developers] Re: Creating and using a “com mon platform” jar in Android - what works?

2010-09-01 Thread DJC
UPDATE! Hah... typical... when I moved all the resources out of my platform and into my app I did not properly pass these down from the app layer. Thus, the code example I gave had no error. Using an intent rather than linking decouples "arguments passed" from "arguments expected" of course - and

[android-developers] Re: EditText field not update, how to do this?

2010-09-01 Thread Mystique
Hi, I tried this but it didn't work: @Override protected void onResume() { super.onResume(); LayoutInflater inflater1 = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE); final View layout1 = inflater1.inflate(R.layout.add_pwd, (ViewGroup) f

[android-developers] Re: Same SMS is received multiple times- HTC Tattoo

2010-09-01 Thread Donald
hi Amit, It's a bug in HTC tattoo. In HTC tattoo it always send two messages. the solution for this is you send the message as multiple sms SmsManager sms = SmsManager.getDefault(); ArrayList smstext = sms.divideMessage(body); /**

[android-developers] Re: GOOGLE, WHAT IS GOING ON with the Active Install %? Bug in install to SDCARD is my guess!

2010-09-01 Thread niko20
Well yes my app has started to drop in rank, although only by one position so far. But it's happening. -niko On Sep 1, 10:38 am, TreKing wrote: > On Wed, Sep 1, 2010 at 9:57 AM, niko20 wrote: > > Yes we have threads about this already but we still have not gotten > > an answer > > And don't exp

[android-developers] Re: Is MapController's zoomToSpan() execution deferred?

2010-09-01 Thread Chad McQuillen
That sounded like an excellent suggestion so I gave it a try. The new code looks like this: mapController.zoomToSpan(latitudeDelta, longitudeDelta); /* * If the MapView has not been drawn yet, we won't be able to retrieve an * accurate zoom level. We have to queue up the work to make the adjus

[android-developers] Re: Goodbye friends and thanks for all the help.

2010-09-01 Thread Lance Nanek
Even the country list provided isn't very useful for developers trying to figure out if they should make the button going to the market for a paid app from a free app visible to a particular user, or any other form of linking to paid apps. The list includes the United States, but AFAIK Puerto Rico

[android-developers] Re: "IllegalArgumentException: parameter must be a descendant of this view" related issue

2010-09-01 Thread Lance Nanek
I have Donut customers who get this crash, so it can still happen there. T-Mobile G1 and T-Mobile myTouch 3G particularly. Also MB501 users, but that's Cupcake. Very frustrating because the stack traces don't mention any of my own code, so I can't figure out what is causing it or how to avoid it.

[android-developers] Re: How do i switch to new activity from a custom listview ?

2010-09-01 Thread mani
Thanks Mark.!! I tried implementing the activity.this.startActivityForResult() [ //results.this.startActivityForResult(myIntent, 0); ] I get error like "No enclosing instance of the type results is accessible in scope" When i read about this error i found it is "When we try to instantiate the i

[android-developers] Re: Goodbye friends and thanks for all the help.

2010-09-01 Thread brucko
> Essentially, there has been no new countries added to the list for > some time. Links like this > > http://market.android.com/support/bin/answer.py?hl=en&answer=143779 > oops. wrong link. the other one has been changed now -- You received this message because you are subscribed to the Google

Re: [android-developers] Memory problem with UI elements

2010-09-01 Thread Shashidhar
On Wed, Sep 1, 2010 at 7:25 PM, Mark Murphy wrote: > On Wed, Sep 1, 2010 at 9:48 AM, Shashidhar > wrote: > > In my application I change layouts very frequently with most of the > user > > interactions. > > Do you mean you call setContentView() repeatedly? Or how do you > "change layouts"? > Y

[android-developers] Re: EditText field not update, how to do this?

2010-09-01 Thread Mystique
thank you! I will try in a show while. On Sep 1, 10:58 pm, Brion Emde wrote: > You should update the value of you EditText in onResume(), which you > don't seem to have right now. That is called when your activity > returns to the foreground. At that point you should have your new > value and you

[android-developers] Re: Goodbye friends and thanks for all the help.

2010-09-01 Thread brucko
>Yes, its extremely frustrating .. ... > I hate it when business models restrict innovation. I've moved from frustration to resignation now. Personally, I feel that Google has been, and still is, one of the most significant driving forces behind innovation in IT today. Things to some extent go w

[android-developers] Re: DDMS Heap Dump permissions problem

2010-09-01 Thread mrmanuke
oops. The error in Eclipse should read "Unable to create HPROF file for application 'com.bunnies.Shhh'. Check logcat for more information." On Sep 2, 9:04 am, mrmanuke wrote: > I'm trying to get a heap dump from ddms in Eclipse, but it gives me > the following error: > > "Unable to create HPROF f

Re: [android-developers] Re: Launch Local Drawable Resource in the Gallery app Using Intents

2010-09-01 Thread Dianne Hackborn
What are you actually trying to achieve here? Gallery generally expects the things it operates on to be in the media provider. If they aren't... well, maybe you can get it to work, but there is a good chance you are going to have inconsistent behavior between different platform versions and devic

[android-developers] Re: Launch Local Drawable Resource in the Gallery app Using Intents

2010-09-01 Thread Christopher
I've hacked around with the code from http://mobile.photoshop.com/android/developers.html to get about half way there. This code brings up the Gallery and when an image is selected, it opens PhotoShop Express to edit the image. I've hacked the intent that to point to the Gallery viewer (the fulls

[android-developers] Re: Goodbye friends and thanks for all the help.

2010-09-01 Thread William Ferguson
Yes, its extremely frustrating .. I've now shelved several apps because they require a paid license revenue model that isn't profity worthy without access to the market. I'm focussing on Adware instead. I hate it when business models restrict innovation. On Sep 2, 10:29 am, brucko wrote: > After

Re: [android-developers] Android file system security

2010-09-01 Thread Dianne Hackborn
Security is ultimately based on Linux/Unix filesystem permissions. See here: http://developer.android.com/guide/topics/security/security.html On Wed, Sep 1, 2010 at 4:17 PM, shalin wrote: > Hello Friends, > > I am wondering that how android is providing security against > corruption of data in

[android-developers] Re: Licensing Verification Library & Apps Solely for "Unlocking"/Removing Ads

2010-09-01 Thread GJTorikian
Perhaps you're right. I added the LVL library to my free app's build path, and exported that APK. The Developer Console lets me upload the new APK, at least. I assume that clicking "Publish" won't introduce some other check. Note that all I have done is add the library, and the appropriate permis

[android-developers] Goodbye friends and thanks for all the help.

2010-09-01 Thread brucko
After yesterdays little farce, http://ausdroid.net/2010/09/01/google-now-supporting-paid-applications-for-aussie-developers/ and the total lack of care factor re: Google and developers in countries unable to set up merchant accounts... I've decided to shelve all my consumer Android projects and

[android-developers] Re: ByteBuffers and GLES

2010-09-01 Thread Lance Nanek
The Javadoc for the OpenGL ES API does a good job explaining why you can't use wrapped arrays for everything: > http://download.oracle.com/javame/config/cldc/opt-pkgs/api/jb/jsr239/index.html > Because these functions do not consume the data located at the given pointer > immediately, but only at

[android-developers] DDMS Heap Dump permissions problem

2010-09-01 Thread mrmanuke
I'm trying to get a heap dump from ddms in Eclipse, but it gives me the following error: "Unable to create HPROF file for application 'space.shhh'. Check logcat for more information." And here is the logcat output: D/ddm-heap(19153): Heap dump: file='/sdcard/com.bunnies.Shhh.hprof' E/dalvikvm(19

[android-developers] Re: idea for android app

2010-09-01 Thread Indicator Veritatis
How about a spoof of the famous Monopoly game, based on the modern economy instead? You could have players competing to carve up Fannie Mac and Fannie Mae;) On Aug 30, 11:24 pm, sudha berde wrote: > Hello everyone, > > Can anyone here help me out by giving a great idea on android > application??

[android-developers] ByteBuffers and GLES

2010-09-01 Thread Samsyn
So, I've been a good boy (I think) and used ByteBuffers (and ShortBuffers and IntBuffers etc) for all the vertex lists and textures I feed to GLES. But can someone point me to the basic architecture of the 'typical' mobile GPU (or, I guess, the OpenVR Droid GPU at least). For example, does a mobi

[android-developers] Android file system security

2010-09-01 Thread shalin
Hello Friends, I am wondering that how android is providing security against corruption of data in file. I also want to know about security model for Shared Preferences, Sqlite datbase etc. storage methods. Thanks. -- You received this message because you are subscribed to the Google Groups "An

Re: [android-developers] client Server

2010-09-01 Thread Jeremy Wadsack
> > > is it possible that if I maintain a server at one laptop and > connect 2 or 3 laptops through LAN and then responding to > their requests sent by the emulators of individual laptop. > This should be possible as it's standard networking, but you'll need to do a couple things. First,

Re: [android-developers] Android streamer Class

2010-09-01 Thread Jeremy Wadsack
MediaPlayer will stream MP3 (shoutcast) streams on FroYo. It will only support 3GP before that (unless you run through a proxy and remove the ICY header or download the file first). I don't know about other formats but suspect you'll need to include your own codec decoders and that probably is best

[android-developers] onEditorAction and requestFocus()

2010-09-01 Thread CasaDelGato
I have a case where there is an EditText field the user enters something into, then presses the Enter key. In the onEditorAction() method, I do some validation, and if it's not a valid input, I want to put the focus back on the EditText field. I've found that using .requestFocus() won't work - prob

Re: [android-developers] Re: Eclipse can't connect to adb

2010-09-01 Thread Steve Mathews
So another bit of info, which may be obvious for anyone experienced, but I did not realize. I get the "Failed to parse the output of 'abd version'" message if I just launch the ddms from the command line. So it seems that the connection between ddms and adb might be the true problem. I have also c

[android-developers] Re: Licensing Verification Library & Apps Solely for "Unlocking"/Removing Ads

2010-09-01 Thread Chris Stratton
I doubt they can readily detect the licensing bytecode in all its possible variations. Rather they probably won't let you make licensing records for a formerly free app. On Sep 1, 3:38 pm, GJTorikian wrote: > Before I continue the experiment, I took one more look through the > docs and found thi

[android-developers] Re: idea for android app

2010-09-01 Thread Bret Foreman
I like to read book reviews on my phone. It would be nice if I could select the title of the book and have it added to my Amazon wish-list. Amazon has good web service interfaces that should make this pretty simple. -- You received this message because you are subscribed to the Google Groups "And

Re: [android-developers] Re: Need Help - Sliding Drawer Exception

2010-09-01 Thread Mark Murphy
On Wed, Sep 1, 2010 at 5:59 PM, Victoria Busse wrote: > Yeah I noticed that :( is there any better or other solution to play videos > instead? No, all video playback eventually involves a SurfaceView. You just do not have as much flexibility with one of those (e.g., in a drawer, in a ScrollView)

Re: [android-developers] Re: Need Help - Sliding Drawer Exception

2010-09-01 Thread Victoria Busse
Yeah I noticed that :( is there any better or other solution to play videos instead? On Wed, Sep 1, 2010 at 10:30 PM, Paul Turchenko wrote: > That's cuz VideoView is SurfaceView and it doesn't care about you > layouts and view structure. > > On Sep 1, 10:47 pm, Victoria Busse > wrote: > > Ha, lo

Re: [android-developers] idea for android app

2010-09-01 Thread TreKing
On Tue, Aug 31, 2010 at 1:24 AM, sudha berde wrote: > Can anyone here help me out by giving a great idea on android application?? > If I had a great idea, I'd probably make the app myself instead of giving it away ... > I am desperately looking for a creative idea. > Isn't everyone? > Whenev

[android-developers] Re: Need Help - Sliding Drawer Exception

2010-09-01 Thread Paul Turchenko
That's cuz VideoView is SurfaceView and it doesn't care about you layouts and view structure. On Sep 1, 10:47 pm, Victoria Busse wrote: > Ha, lol speaking of the devil, it was exactly that I wrapped the scrollView > around everything else except the slidingDrawer and placed all in a Relative > La

Re: [android-developers] Re: "IllegalArgumentException: parameter must be a descendant of this view" related issue

2010-09-01 Thread Frank Weiss
I suppose the exception is being thrown by some API method (or posisbly an internal SDK method) that takes a parameter of type View. Have you identified the API method? Another thing to do is get the SDK source and search for that error message. -- You received this message because you are subscr

Re: [android-developers] Reducing Permissions

2010-09-01 Thread Dianne Hackborn
On Wed, Sep 1, 2010 at 10:18 AM, Brad Gies wrote: > I still want an "ask the user" optional permission for the read contacts > because even though my app will drop using them for now, it would be a very > handy feature for them. Just so you know, my app is about connecting with > friends, and bei

Re: [android-developers] Re: KeyEvent Methods

2010-09-01 Thread Dianne Hackborn
Well they would be 0 for a key down. They should be different for a key up. On Wed, Sep 1, 2010 at 1:48 AM, Tez wrote: > I tried subtracting the 2 values. I always get zero. > > On Sep 1, 1:04 pm, Dianne Hackborn wrote: > > On Tue, Aug 31, 2010 at 10:47 PM, Tez wrote: > > > 1. what is the get

[android-developers] Re: when call is rejected , i want to close the activity

2010-09-01 Thread Indicator Veritatis
The most important suggestion I can give to you is to re-write your post in coherent English. Then follow the guidelines of http://www.catb.org/esr/faqs/smart-questions.html. For once we see the errors in verb tense in your very sentence, we know that we cannot trust you to avoid making mistakes c

Re: [android-developers] Urgent Help - Diff between Phone Window and Mid Window

2010-09-01 Thread Dianne Hackborn
MidWindow is old, broken, and will disappear in the next release. There is really not much point in talking about it. On Wed, Sep 1, 2010 at 3:41 AM, Revathi K J Ramanan < revathiramana...@gmail.com> wrote: > Hi Dianne, > > I was trying to find the reply for the below question in short.. > > Wha

[android-developers] Android streamer Class

2010-09-01 Thread Ahmed Shoeib
Hi all , i want a class implements radio streamer the application should streams radio from url the streamer should include ( MP3 , WM , AAC ) .. can anyone help me ??? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group,

[android-developers] Re: "IllegalArgumentException: parameter must be a descendant of this view" related issue

2010-09-01 Thread swinefeaster
Found any workaround yet? I'm struggling to find a way to trap or swallow this exception with no luck. Still occurs on 2.2 :( On Jul 19, 10:18 pm, mongd wrote: > Hi All, while I'm testing my app with Monkey test tool, I ran into the > following exception: > "IllegalArgumentException: parameter mu

Re: [android-developers] Is it possible to show my maps in MapView?

2010-09-01 Thread Steve Howard
http://groups.google.com/group/android-developers/browse_thread/thread/a3a66e8d16ff78ba/cad8d016a0714a92 Steve On Tue, Aug 31, 2010 at 3:05 AM, cnwy wrote: > Hi, > The google map is too o

[android-developers] Re: Developing Android REST Client Applications

2010-09-01 Thread authorwjf
In its most basic format, calling a rest service is simply doing an HTTP call. For example: public void callSomeApi() throws Exception { DefaultHttpClient httpclient = new DefaultHttpClient(); httpclient.getCredentialsProvider().setCredentials( new AuthSc

Re: [android-developers] Is MapController's zoomToSpan() execution deferred?

2010-09-01 Thread Steve Howard
The zoom may be deferred if the MapView hasn't been drawn yet. Have you tried putting your logic in a Runnable and post()ing it to the MapView? Steve On Sun, Aug 29, 2010 at 7:18 PM, Chad McQuillen wrote: > My application has a MapView which shows a collection of items in a > satellite view. I

[android-developers] Re: idea for android app

2010-09-01 Thread Yahel
> I am desperately looking for a creative idea. Whenever i think of new > application and i think its not there, i ve been Recipe to find an idea : Scratch your own itch :D Whatever you thought you could do with your phone but didn't find the app that suited that specific need. Beside, it's not

[android-developers] obtainBuffer timed out in AudioTrack.write()

2010-09-01 Thread sasq
Don't know why I bother asking here but, you never know, right? Anyway - after stopping and restarting playback of an audiotrack stream, on some devices I consistently get; W/AudioTrack( 2453): obtainBuffer timed out (is the CPU pegged?) 0x64acc0 user=0001, server= after freezing for

[android-developers] Re: AudioRecord weirdness on Samsung Moment (SPH-M900)

2010-09-01 Thread Steve Hugg
The device in question is running 1.5, FWIW - therefore it would get AudioFormat.CHANNEL_CONFIGURATION_MONO. -- 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 unsubsc

[android-developers] Re: Developing Android REST Client Applications

2010-09-01 Thread Arjun
In short the classes which extends contentprovider are mainly used for database specific operations Service API is used to run services..the services can be something like email poller or news feedser If u want to connect to external servers use apaches http classes Thanks, Arjun. On Sep 1, 7:07

[android-developers] Re: Droid 2 ADB Issue

2010-09-01 Thread authorwjf
http://groups.google.com/group/android-developers/browse_thread/thread/3571170253b99d0/92c8a626e08e2574 On Aug 30, 1:11 pm, Jon Cook wrote: > Has anyone had any problems with you're Droid 2 to ADB? Things were > great on the Droid 1. I updated all of the Motorola drivers and so > forth but no lu

[android-developers] AudioRecord weirdness on Samsung Moment (SPH-M900)

2010-09-01 Thread Steve Hugg
Our app has a problem with AudioRecord where the recorded audio is very slw (sound like it's 2x slower). We use AudioRecord.getMinBufferSize to try 16000 Hz first and then back down to 8000 Hz if that function returns an error. So my guess is that the audio is reported as 8000 Hz even though it

[android-developers] Re: Licensing Verification Library & Apps Solely for "Unlocking"/Removing Ads

2010-09-01 Thread GJTorikian
Before I continue the experiment, I took one more look through the docs and found this gem: "If your application is already published as free, you won't be able to upload a new version that uses licensing." I am guessing that if I try to include the LVL Library project into my free app, I won't b

[android-developers] Re: Content Provider URIs Documented?

2010-09-01 Thread the2bears
Mark, Yeah, too bad, but it makes sense. Thanks again for taking the time to respond. Bill On Sep 1, 12:20 pm, Mark Murphy wrote: > On Wed, Sep 1, 2010 at 3:15 PM, the2bears wrote: > > Thanks for the reply.  It's unfortunate that these things are not > > documented, but that's a side effect o

Re: [android-developers] Need Help - Sliding Drawer Exception

2010-09-01 Thread Mark Murphy
I suspect that you cannot have a SlidingDrawer in a ScrollView. On Wed, Sep 1, 2010 at 3:33 PM, kivy wrote: > Hi there, > > I just ran into a problem with my SlidingDrawer. I got a > RuntimeException telling me that my SlidingDrawer cannot have > UNSPECIFIED dimensions (see Catlog output). > If I

Re: [android-developers] Re: Eclipse can't connect to adb

2010-09-01 Thread Steve Mathews
I do have the tools dir on the PATH (and now CLASSPATH also because your comment made me second guess the docs). I can also verify that killing and restarting the server does not clear up the issue. I also verify the adb process is not still running after doing the adb kill-server. I also tried re

Re: [android-developers] Re: J2ME to Android

2010-09-01 Thread Kostya Vasilyev
The code seems to be really simple, establishing an HTTP connection, and getting raw streams for reading and writing. Replace javax.microedition classes with those included with Android. -- Kostya 01.09.2010 23:26, kypriakos пишет: Hi all - trying this one again .. any ideas? If the Connecto

[android-developers] Need Help - Sliding Drawer Exception

2010-09-01 Thread kivy
Hi there, I just ran into a problem with my SlidingDrawer. I got a RuntimeException telling me that my SlidingDrawer cannot have UNSPECIFIED dimensions (see Catlog output). If I understand it correctly this means layout_width and layout_height are empty, but as you can see from my xml code (see fu

[android-developers] Please Help - key down behaves badly

2010-09-01 Thread avigadl
I have a linear layout with several custom view and button. Whenever I press a key down I would like that only one view will respond to it. However, now when I press a key I see that te focus goes to the button in that layout. How to make an activity to respond to te key down event before movin

Re: [android-developers] how to run custom app on boot-up???

2010-09-01 Thread YuviDroid
Check out the ACTION_BOOT_COMPLETED ( http://developer.android.com/reference/android/content/Intent.html#ACTION_BOOT_COMPLETED). That's probably what you are looking for.. On Tue, Aug 31, 2010 at 8:48 AM, vinix wrote: > i have written an application(.apk) which i would wish to be run on > boot-u

[android-developers] Re: J2ME to Android

2010-09-01 Thread kypriakos
Hi all - trying this one again .. any ideas? If the Connector class was not created in the original Android Java, what else can be used in its place? 3rd Party software or any other part of the API? Thanks. On Aug 26, 4:47 pm, kypriakos wrote: > I am pretty much trying to solve these issues: > >

[android-developers] Re: buscamos desarrollador

2010-09-01 Thread JPBerrocal
Buenas en que parte de latinoamerica? On 31 ago, 09:50, biscuitapps wrote: > Buscamos desarrollador para hacer varias aplicaciones. Ubicado en > latinoamerica, se valorara experiencia. > Saludos. -- You received this message because you are subscribed to the Google Groups "Android Developers" g

Re: [android-developers] Re: Content Provider URIs Documented?

2010-09-01 Thread Mark Murphy
On Wed, Sep 1, 2010 at 3:15 PM, the2bears wrote: > Thanks for the reply.  It's unfortunate that these things are not > documented, but that's a side effect of the *more* unfortunate fact > they're not supported. Well, they're applications, not part of the OS. They can be replaced, removed, modifi

Re: [android-developers] stuck right at the beginning

2010-09-01 Thread Frank Weiss
I suppose it's complaining about the @string:hello. Did you forget to copy the strings.xml file as well? -- 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

[android-developers] Creating and using a “common platform” jar in Android - what works?

2010-09-01 Thread DJC
I am sub-dividing an app I have into "common platform" and "app" layers so that I can distribute the platform as a jar for use by partners - and retain my IP. I now have two different Eclipse projects. I moved all resource references into the app project - the platform project gen directory is emp

[android-developers] Re: Content Provider URIs Documented?

2010-09-01 Thread the2bears
Mark, Thanks for the reply. It's unfortunate that these things are not documented, but that's a side effect of the *more* unfortunate fact they're not supported. Any other ideas on how I might achieve my goal here? I want to launch an application when a chat session is started by a message fro

[android-developers] Re: Eclipse can't connect to adb

2010-09-01 Thread Arjun
try this adb kill-server adb start-server please clarify whether dd you add tools to the class path Thanks, Arjun. On Sep 1, 11:33 am, Steve Mathews wrote: > Was starting to worry that this message wasn't going to get through. > Now hopefully someone has some ideas for me. > > On Tue, Aug 31,

Re: [android-developers] Using socket in a service communicating with more activities...

2010-09-01 Thread Jeremy Wadsack
Probably the best path to take would be to move your thread into a Service. Then use Intentsor binding to connect activities to the service. Similarly you can ha

Re: [android-developers] New Developer

2010-09-01 Thread TreKing
On Wed, Sep 1, 2010 at 1:47 PM, Frank Weiss wrote: > Please pore over developer.android.com before trying to ask > "noob" questions. > QFE - It doesn't sound exciting, but having a look through the documentation, class by class, is a fantastic way to learn about the system, how it's structured,

Re: [android-developers] What is the class name of media scanner service?

2010-09-01 Thread Jeremy Wadsack
http://www.netmite.com/android/mydroid/external/opencore/android/mediascanner.cpp -- Jeremy Wadsack On Tue, Aug 31, 2010 at 9:19 PM, Agus wrote: > What is the class name of media scanner service? > > -- > You received this message because you are subscribed to the Google > Groups "Android Deve

Re: [android-developers] Content Provider URIs Documented?

2010-09-01 Thread Mark Murphy
On Wed, Sep 1, 2010 at 2:54 PM, the2bears wrote: > I found http://groups.google.com/group/android-developers/ > browse_thread/thread/eac04c2a99eb681c/4a6c25fe0a956d17? > lnk=gst&q=broadcastreceiver">this link very helpful regarding how > to react to the arrival of an email. > > The content: schema

Re: [android-developers] Re: Getting started with Android

2010-09-01 Thread Mark Murphy
On Wed, Sep 1, 2010 at 2:49 PM, Frank Weiss wrote: > I forgot to add, books, such as Mark Murphy's http://commonsware.com/Android/ Thanks for the vote of confidence, guys! -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://t

[android-developers] Content Provider URIs Documented?

2010-09-01 Thread the2bears
Hello, I found http://groups.google.com/group/android-developers/ browse_thread/thread/eac04c2a99eb681c/4a6c25fe0a956d17? lnk=gst&q=broadcastreceiver">this link very helpful regarding how to react to the arrival of an email. The content: schema seems very sparsely documented, though. Is there an

Re: [android-developers] Getting started with Android

2010-09-01 Thread TreKing
On Sun, Aug 29, 2010 at 5:27 PM, wrote: > I was wondering if there is any generally accepted material as being one of > if not the best in getting started with Android? The online documentation and samples and a solid book, like Mark Murhpy's. On Wed, Sep 1, 2010 at 1:43 PM, Tim wrote: > >

Re: [android-developers] Re: Getting started with Android

2010-09-01 Thread Frank Weiss
I forgot to add, books, such as Mark Murphy's http://commonsware.com/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 emai

[android-developers] Re: Best resource to get started with Android development.

2010-09-01 Thread Tim
Dear David, If you want to get started developing Android apps really quickly you may wish to consider rapid application development tools such as our MobiForms Developer. MobiForms replaces the need to download 100s MB of files and learn Eclipse, the Android SDK, Java and XML. MobiForms is idea

Re: [android-developers] New Developer

2010-09-01 Thread Frank Weiss
It really helps if you already have working knowledge of Java and Java debugging. Depending on the kinds of apps you want to build, also helps to have working knowledge of one or more of the following: networking, graphics, OpenGL, client-server, XML and XML parsing. Although you don't need to use

[android-developers] Re: New Developer

2010-09-01 Thread Tim
Dear Thomas, If you want to get started developing Android apps really quickly you may wish to consider rapid application development tools such as our MobiForms Developer. MobiForms replaces the need to download 100s MB of files and learn Eclipse, the Android SDK, Java and XML. MobiForms is ide

Re: [android-developers] New Developer

2010-09-01 Thread TreKing
On Mon, Aug 30, 2010 at 11:35 AM, Thomas Creech wrote: > What do I need to do to get myself established in the Android Developer > Community What do you mean get yourself "established"? There's no hazing process to join the community ... > and what things do can I research so that I can learn

[android-developers] Re: Getting started with Android

2010-09-01 Thread Tim
If you want to get started developing Android apps really quickly you may wish to consider rapid application development tools such as our MobiForms Developer. MobiForms replaces the need to download 100s MB of files and learn Eclipse, the Android SDK, Java and XML. MobiForms is ideal for creatin

Re: [android-developers] Web browser

2010-09-01 Thread Frank Weiss
Do you mean a web browser or a web server? In either case, it's not clear why for a class project you would want to implement that on Android instead of on desktop, unless, of course that would be to boring for an advanced Java developer. -- You received this message because you are subscribed to

Re: [android-developers] Eclipse can't connect to adb

2010-09-01 Thread Steve Mathews
Was starting to worry that this message wasn't going to get through. Now hopefully someone has some ideas for me. On Tue, Aug 31, 2010 at 12:25 AM, Steve M wrote: > So I have got Eclipse (Galileo) setup with ADT installed. I also got > the SDK installed. But when I run Eclipse I get "Failed to p

[android-developers] android.media.MediaPlayer Uri port

2010-09-01 Thread Rico
Trying to use MediaPlayer to play an MP3 file hosted remotely on a server that is serving the file up on a non-standard port (e.g. 8080). Code looks like this: android.net.Uri uri = android.net.Uri.parse("http://www.xyz.com:8080/ sample.mp3"); Log.d("debug", "port: " + uri.getPort()); // just ver

[android-developers] Re: Android Market Licensing: Now Available!

2010-09-01 Thread Mike Hearn
> In a nutshell, what I'm hoping LVL can grow into is a system that > packages license verification in a way that is really really hard to > remove.  It seems like we've got half of that equation nicely under > way with LVL in its current form. The sort of anti-piracy system you're after is essent

  1   2   3   >