although there is the GL_ARB_draw_buffers extension available on some Android devices (and therefore rendering to multiple buffers is possible), the answer is "No" (with a possible exception of some "me draw 50 milion polygons" rasterizer bound scenarios).
It is because the GPUs used on these devices do have very weak pixel shaders and therefore doing a fullscreen pass with some complicated shader is pretty much out of the question. You better stick to the old days' demoscene tricks which were used before programmable shading became mainstream.
Whatever you can move to vertex shader, do it (eg. effects like fullscreen deformations are better off using mesh deformed in vertex shader, rather than offsetting texcoords in fragment shader).
Whatever you can solve using geometry (eg. rendering a skybox made of an actual box will be faster than rendering fullscreen quad and calculating view directions for texture sampling in shader), do it.
Well, the only thing we can do, is to hope for new devices with stronger pixel shaders to become available. I hope it's not too much of a depressing answer :) of course, you can try to implement deferred shading on Android, but it will likely be slow.