[android-developers] Adding animation to LinearLayout

2011-06-09 Thread Rakshith S Kumar
I have just started up with android and I am having trouble with adding animation to the LinearLayout I have added the log and java coding below, Please Help Thank you Rakshith S Kumar package com.androidbook.triviaquiz; import android.content.Intent; import android.os.Bundle; import

[android-developers] Re: Android 3.1 is too slow

2011-06-09 Thread Chris
No, no tweaks or tricks. They're working on hardware acceleration on the graphics, which should probably help out. But for now, you're sol. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: problem with ontouch of surfaceview

2011-06-09 Thread grace
I am using view.VISIBLE and View.INVISIBLE to make the layout show and hide my onTouch looks something like this public boolean onTouch(View v, MotionEvent event) { int id = v.getId(); int i = event.getAction();

[android-developers] onHomePressed?

2011-06-09 Thread bob
I know there is the onBackPressed function to detect back button presses. Is there anything similar with the Home button? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: Adding animation to LinearLayout

2011-06-09 Thread Mansoor
hi, In your onCreate method u doing something wrong LinearLayout layout = (LinearLayout) findViewById(R.layout.menu); u have to give linear layout id instead of using R.layout.menu it should be somthing as follow: LinearLayout layout = (LinearLayout) findViewById(R.id.your linear layout id

[android-developers] WebView not calling onReceivedError 500 error from server

2011-06-09 Thread Brad
I've got a webview and I've set the webviewclient to my own class where I override the onReceivedError and onPageFinished methods. When my server returns a 500 error code along with an html error message, onPageFinished gets called but onReceviedError does not. I've tried calling a completely

Re: [android-developers] Re: Fonts on Android, how are they manage by the OS?

2011-06-09 Thread Nikolay Elenkov
On Fri, Jun 10, 2011 at 1:32 PM, Dianne Hackborn hack...@android.com wrote: Currently at build time one of them must be selected. Any plans to change this to something more flexible? BTW, it seems Chinese is the default, because all non-Japanese phones (don't know about tables), display

[android-developers] Making a service invisible

2011-06-09 Thread kampy
Hi, i am making an mobile theft tracker application which indeed checks the sim details on boot up of the device and if the details are same the service stops and if not it will start sending messages to the phone numbers stored . so i want hide the service from the running services list can we

[android-developers] Re: When does the platform hold wakelocks?

2011-06-09 Thread Heikki
Thanks for the answers, Mark. You do some good work to educate the Android developers here (including me) :) Everything else sounds pretty clear, but the incoming network data wakeup is still a bit fuzzy. Consider for example doing a synchronous HTTP request with HttpClient or some other

<    1   2   3