[android-developers] Call glGetShaderPrecisionFormat before GLSurfaceView created

2013-06-17 Thread NoraBora
My app is using some graphic filter with GLSurfaceView  OpenGL API
and I recently found my algorithm depends on shader precision.

Now I want to my app to show the GLSurfaceView only if the device supports 
proper shader precision.
but It seems is...I can't use glGetShaderPrecisionFormat until 
GLSurfaceView.onSurfaceCreated.
Adding GLSurfaceView and change visibility to gone, invisible doesn't help.

Is there any way around? or this is just impossible?

-- 
-- 
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, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [android-developers] Call glGetShaderPrecisionFormat before GLSurfaceView created

2013-06-17 Thread Romain Guy
You don't have to use a GLSurfaceView. You could create your own OpenGL
context, using a 1x1 pbuffer window surface, to be able to call
glGetShaderPrecisionFormat(). Just make sure you don't do this on the UI
thread to not conflict with Android's UI renderer.


On Sun, Jun 16, 2013 at 11:36 PM, NoraBora noranb...@gmail.com wrote:

 My app is using some graphic filter with GLSurfaceView  OpenGL API
 and I recently found my algorithm depends on shader precision.

 Now I want to my app to show the GLSurfaceView only if the device supports
 proper shader precision.
 but It seems is...I can't use glGetShaderPrecisionFormat until
 GLSurfaceView.onSurfaceCreated.
 Adding GLSurfaceView and change visibility to gone, invisible doesn't help.

 Is there any way around? or this is just impossible?

 --
 --
 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, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to the Google Groups
 Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.






-- 
Romain Guy
Android framework engineer
romain...@android.com

-- 
-- 
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, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [android-developers] Call glGetShaderPrecisionFormat before GLSurfaceView created

2013-06-17 Thread NoraBora
That's a clever trick. I'll try that. Thank you.
2013. 6. 17. 오후 4:01에 Romain Guy romain...@android.com님이 작성:

 You don't have to use a GLSurfaceView. You could create your own OpenGL
 context, using a 1x1 pbuffer window surface, to be able to call
 glGetShaderPrecisionFormat(). Just make sure you don't do this on the UI
 thread to not conflict with Android's UI renderer.


 On Sun, Jun 16, 2013 at 11:36 PM, NoraBora noranb...@gmail.com wrote:

 My app is using some graphic filter with GLSurfaceView  OpenGL API
 and I recently found my algorithm depends on shader precision.

 Now I want to my app to show the GLSurfaceView only if the device
 supports proper shader precision.
 but It seems is...I can't use glGetShaderPrecisionFormat until
 GLSurfaceView.onSurfaceCreated.
 Adding GLSurfaceView and change visibility to gone, invisible doesn't
 help.

 Is there any way around? or this is just impossible?

 --
 --
 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, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to the Google Groups
 Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.






 --
 Romain Guy
 Android framework engineer
 romain...@android.com

 --
 --
 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, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to a topic in the
 Google Groups Android Developers group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/android-developers/rqh379btofQ/unsubscribe
 .
 To unsubscribe from this group and all its topics, send an email to
 android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
-- 
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, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Re: Call glGetShaderPrecisionFormat before GLSurfaceView created

2013-06-17 Thread a1


 My app is using some graphic filter with GLSurfaceView  OpenGL API
 and I recently found my algorithm depends on shader precision.

 Now I want to my app to show the GLSurfaceView only if the device supports 
 proper shader precision.


But what's your issues exactly? I'm guessing you have a problem with mali 
10 bits mediump fragment precision, but depending on usage and model this 
may be workaround (eg. mali-t604 supports fragment highp).

--
Bart

-- 
-- 
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, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [android-developers] Re: Call glGetShaderPrecisionFormat before GLSurfaceView created

2013-06-17 Thread NoraBora
I haven't found workaround so until then I wanted to disable the feature
from ui.
Could you be more specific about 10-bits-mediump fragment precision
workaround?
I'm interested.


2013/6/17 a1 arco...@gmail.com


 My app is using some graphic filter with GLSurfaceView  OpenGL API
 and I recently found my algorithm depends on shader precision.

 Now I want to my app to show the GLSurfaceView only if the device
 supports proper shader precision.


 But what's your issues exactly? I'm guessing you have a problem with mali
 10 bits mediump fragment precision, but depending on usage and model this
 may be workaround (eg. mali-t604 supports fragment highp).

 --
 Bart

 --
 --
 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, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to a topic in the
 Google Groups Android Developers group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/android-developers/rqh379btofQ/unsubscribe
 .
 To unsubscribe from this group and all its topics, send an email to
 android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
-- 
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, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [android-developers] Re: Call glGetShaderPrecisionFormat before GLSurfaceView created

2013-06-17 Thread a1


 I haven't found workaround so until then I wanted to disable the feature 
 from ui.
 Could you be more specific about 10-bits-mediump fragment precision 
 workaround?
 I'm interested.


As I said that really depend what is your issue, I use several different 
techniques for this, as I mention on mali-t604 (Nexus 10) you can use highp 
- you can use build in define GL_FRAGMENT_PRECISION_HIGH in you fragment 
shader:

#if GL_FRAGMENT_PRECISION_HIGH
precision highp float;
#else
precision mediump float;
#endif

Also if possible you may try to move you calculation to vertex shader and 
interpolate with varying (possibly boosting precision through invariance - 
with invariant specifier keyword).

There really isn't any *universal* workaround but usually you can came with 
some solution for specific problem.
 
--
Bart

-- 
-- 
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, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Does android loads while SQLIte file when application runs?

2013-06-17 Thread sourabh sahu


-- 
-- 
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, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Job Sniffer

2013-06-17 Thread Iván Navarro
Hola a todos,
antes de nada perdón por el spam, pero empecé a filtrar mis contactos y era
un rollo tremendo.

Voy rápido, hace unas semanas subí al market la última versión de Job
Snifferhttps://play.google.com/store/apps/details?id=com.sinPlanB.jobSniffer,
mi app para gestionar la búsqueda de trabajo, y los chicos de
https://www.facebook.com/JobseekerForum la acaban de compartir en su muro.

Si le podéis dar al 'Me Gusta' os estaré agradecidos.
Si la compartís en vuestros muros, eso ya sería la leche.
Y si os la bajáis y me dais un buen ratting, bueno..., no creo que tenga
palabras.

Pero siempre os quedará la opción de borrar el mail y mandarme a la mierda.

De todas maneras muchas gracias,

Iván

-- 
-- 
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, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Re: Cookies

2013-06-17 Thread hemanth
Niall twomers at gmail.com writes:

 
 
 Thanks a lot. Got it working now. 
 
 
 
 

What changes you ade to make it work.Could you share what you have done!!!
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-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] FW: Muhammad

2013-06-17 Thread Muhammad

hello! http://www.pampadesign.eu/jev/sgjwo/sabmq/gwk.html   
Muhammad

-- 
-- 
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, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Re: ListView vs. GridView vs. TableLayout

2013-06-17 Thread ankit the OPIUM
Is your designing is something like onClick of an item on First list should 
change content of rest of the column? If yes,you can try Fragments. It will 
be a nice to have 2 fragments in tablet and one in phone.
Just search for fragment tutorials on google you will get tons.

On Tuesday, 2 March 2010 01:29:01 UTC+5:30, sdphil wrote:

 I want to create a list view that looks like this:

 +--+--+--+
 |  |  |  |
 +--+--+--+
 |  |  |  |
 +--+--+--+

 It looks like a grid in terms of the selection can go to any row and
 column, but I want the left most column to be significantly wider than
 the columns to the right of it.

 What kind of control should I use?

 tia.



-- 
-- 
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, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] netcfg command through app

2013-06-17 Thread Marta Ribeiro
I made an app which I want, at the beginning, to perform the following 
commands:

su netfg eth0 up
su netcfg eth0 dhcp

I try the following code in my app:

  Process proc = Runtime.getRuntime().exec(new String[]{su, -c, netcfg 
eth0 up});
  proc.waitFor();
  
  proc = Runtime.getRuntime().exec(new String[]{su, -c, 
netcfg eth0 dhcp});
  proc.waitFor();  

Unfortunately, this is not doing anything. Can anyone help me? I would 
really appreciate it.

-- 
-- 
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, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Re: Does android loads while SQLIte file when application runs?

2013-06-17 Thread Piren
What?

On Monday, June 17, 2013 2:11:29 PM UTC+3, sourabh wrote:




-- 
-- 
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, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Re: Job Sniffer

2013-06-17 Thread Piren
Honestly, the English translation Google Translate gave me is funny... is 
That would be the milk a common saying in Spanish?

Other than that,  a good rule of thumb: If your message starts with sorry 
for the spam, don't send it. 



On Monday, June 17, 2013 4:09:43 PM UTC+3, boyscout ninja wrote:

 Hola a todos,
 antes de nada perdón por el spam, pero empecé a filtrar mis contactos y 
 era un rollo tremendo.

 Voy rápido, hace unas semanas subí al market la última versión de Job 
 Snifferhttps://play.google.com/store/apps/details?id=com.sinPlanB.jobSniffer,
  
 mi app para gestionar la búsqueda de trabajo, y los chicos de 
 https://www.facebook.com/JobseekerForum la acaban de compartir en su muro.

 Si le podéis dar al 'Me Gusta' os estaré agradecidos.
 Si la compartís en vuestros muros, eso ya sería la leche.
 Y si os la bajáis y me dais un buen ratting, bueno..., no creo que tenga 
 palabras.

 Pero siempre os quedará la opción de borrar el mail y mandarme a la mierda.

 De todas maneras muchas gracias,

 Iván
  

-- 
-- 
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, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [android-developers] Re: Job Sniffer

2013-06-17 Thread Kristopher Micinski
The idiom esa seria la leche is indeed a spanish idiom meaning
something along the lines of that would be awesome in English..

Kris

2013/6/17 Piren gpi...@gmail.com:
 Honestly, the English translation Google Translate gave me is funny... is
 That would be the milk a common saying in Spanish?

 Other than that,  a good rule of thumb: If your message starts with sorry
 for the spam, don't send it.



 On Monday, June 17, 2013 4:09:43 PM UTC+3, boyscout ninja wrote:

 Hola a todos,
 antes de nada perdón por el spam, pero empecé a filtrar mis contactos y
 era un rollo tremendo.

 Voy rápido, hace unas semanas subí al market la última versión de Job
 Sniffer, mi app para gestionar la búsqueda de trabajo, y los chicos de
 https://www.facebook.com/JobseekerForum la acaban de compartir en su muro.

 Si le podéis dar al 'Me Gusta' os estaré agradecidos.
 Si la compartís en vuestros muros, eso ya sería la leche.
 Y si os la bajáis y me dais un buen ratting, bueno..., no creo que tenga
 palabras.

 Pero siempre os quedará la opción de borrar el mail y mandarme a la
 mierda.

 De todas maneras muchas gracias,

 Iván

 --
 --
 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, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to the Google Groups
 Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.



-- 
-- 
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, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Rare issue with VideoView

2013-06-17 Thread Shruthi Varma
Hi All,

I have worked on VideoView on all versions prior to ICS. It is working
perfectly fine.
Recently, my team bought a Karbonn A7 Smartphone which runs on Android 4.0
ICS
When I tried to play a Video URL in a VideoView, while the VideoView was
preparing, the view had a transparent background (instead of the
traditional opaque black background), as a result, the previous activity's
view was  shown in the foreground. I didn't understand, why it is happening
like this.
Did any of you have faced this issue with ICS VideoView?
If yes, please help me out with the solution. If no, I think, the issue
might be in the phone or something..

Thanks and Regards,
Shruthi.

-- 
-- 
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, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Without lagging how to bind 10 diff. views in listview

2013-06-17 Thread Rajan
I am developing an application which is having one ListView and in that i 
am binding 12 different views (Custrom_Row.xml) , Now, the problem is that 
when i am scrolling the listview it is not scroll smoothly.. I am using 
getView() method for all this views.

I am stuck in one issue 

i'm newbie in android and i want to know one thing regarding listview 
like : 

if i am binding 12 different views (12 custom row xml) in a single 
listview, 
after that i scroll the listview, but it's not smooth, 

*what i have done :* 
- i have use viewHolder pattern, but no luck :-(
- i have already read this article 
  http://www.curious-creature.org/2012/12/01/android-performance-case-study/

and that mentioned i have to enable GPU option, but that option is only 
available =4.0 and i'm using 2.2, 

so what should i do??


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-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] How to bind 12 diff. views in listview without lagging

2013-06-17 Thread Rajan
I am stuck in one issue 

i'm newbie in android and i want to know one thing regarding listview 
like : 

if i am binding 12 different views (12 custom row xml) in a single 
listview, 
after that i scroll the listview, but it's not smooth, 

*what i have done :* 
- i have use viewHolder pattern, but no luck :-(
- i have already read this article 
  http://www.curious-creature.org/2012/12/01/android-performance-case-study/

and that mentioned i have to enable GPU option, but that option is only 
available =4.0 and i'm using 2.2, 

so what should i do??


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-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [android-developers] Re: Job Sniffer

2013-06-17 Thread TreKing
2013/6/17 Piren gpi...@gmail.com

 Honestly, the English translation Google Translate gave me is funny... is
 That would be the milk a common saying in Spanish?


Why not? Don't we have the equally
ridiculous-sounding-when-you-think-about-it phrase of that would be the
bomb? At least milk is wholesome and does a body good.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
-- 
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, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Transparent Background for VideoView in ICS while loading, Is it Normal??

2013-06-17 Thread Shruthi Varma
Hi All,

I have worked on VideoView on all versions prior to ICS. It is working
perfectly fine.
Recently, my team bought a Karbonn A7 Smartphone which runs on Android 4.0
ICS
When I tried to play a Video URL in a VideoView, while the VideoView was
preparing (loading), the view had a transparent background (instead of the
traditional opaque black background), as a result, the previous activity's
view was  shown in the foreground. I didn't understand, why it is happening
like this.
Did any of you have faced this issue with ICS VideoView?
If yes, please help me out with the solution. If no, I think, the issue
might be in the phone or something..

Thanks and Regards,
Shruthi.

-- 
-- 
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, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] how to impliment animation in dialog fragment

2013-06-17 Thread Sadhna Upadhyay
Hi guys,
i am trying to add animation in dialog fragment animation should be
like,
   when i click on button then dialog page should come from top and again
when i click on dismiss then it should be go up.

please help me if anyone have any idea.

-- 
-- 
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, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.