Re: [android-developers] Digest for android-developers@googlegroups.com - 25 Messages in 19 Topics

2012-11-21 Thread avinash shyam
hi,
 how  to click on a button after rotation animation in devices starting
from level 9?
Its a menu of 5items which opens up like cards in our hands and clicking on
it after animation should do somethings.
It sounds easy but i am having trouble as the the click happens on the
original poition and not at the position after the animation.
i have used the XML for the animation part, and setfill(true) which causes
the images to stay at new positions after animation but its not clickable
in the new positions.

Please help.

-- 
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

Re: [android-developers] Digest for android-developers@googlegroups.com - 25 Messages in 19 Topics

2012-03-04 Thread gagsbond

Hi ,

During the EAPOL handshake , all the data packets other than EAPOL packets  
should be dropped .

In android , which module is responsible for taking care of this?

IS there any document available , which provide the information on wifi  
architecture on Android?


Regards

Gagan

--
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

Re: [android-developers] Digest for android-developers@googlegroups.com - 25 Messages in 19 Topics

2011-01-14 Thread Chen, Yang


Sent from my Sony Ericsson Xperia.

android-developers+nore...@googlegroups.com 
android-developers+nore...@googlegroups.com编写:



  Today's Topic Summary

Group: http://groups.google.com/group/android-developers/topics

 *   Drawing on a canvas like normal VS OpenGl [2 Updates]
 *   Launching an application from a email. Is that possible? [1 Update]
 *   DNS WHOIS query support [2 Updates]
 *   First attempt at LVL Licensing [1 Update]
 *   About viewstubs [1 Update]
 *   How to stop ADB server [1 Update]
 *   What type of messaging would you use? [1 Update]
 *   HTTP parameter question [1 Update]
 *   Interaction with other apps [2 Updates]
 *   convert web page to pdf [2 Updates]
 *   How to access mail ? [2 Updates]
 *   Use wireless networks setting not always available? [1 Update]
 *   Can't Uninstall [1 Update]
 *   App Add-on [1 Update]
 *   Gingerbread BroadcastReceiver Issue [2 Updates]
 *   partial wakelock for 3G in Android [1 Update]
 *   Prevent application - after Factory Data reset [1 Update]
 *   Making cross-thread blocking/sync calls [1 Update]
 *   How to interrupt a blocking I/O operation? [1 Update]

 Topic: Drawing on a canvas like normal VS 
OpenGlhttp://groups.google.com/group/android-developers/t/a441292fc2094c4e

Tim tdh...@gmail.com Jan 08 04:52AM -0800 ^

 So I was just wondering is openGL better in terms of making a 2dgame. does
 it render faster then if I were to draw on a Canvas

I would definitely go with OpenGL. I've not used the canvas, but I
seriously doubt it is as fast, and definitely isn't as flexible. It
may be easier to use though if your game is simple (e.g. I would use
it for something like a board game).

Also, using OpenGL will let you easily port your game to other OSes
(except WP7).



David Turner di...@android.com Jan 08 04:25PM +0100 ^


 So I was just wondering is openGL better in terms of making a 2dgame. does
 it render faster then if I were to draw on a Canvas


It really depends on what you're doing.There are certain things that are
simply not possible or simply slower with OpenGL (e.g. high-quality
anti-aliased vector rendering being one of them). Also not all GLES
driver/chips are the same, and your performance may vary.

--



 Topic: Launching an application from a email. Is that 
possible?http://groups.google.com/group/android-developers/t/c84ce967b77abc75

sdphil phil.pellouch...@gmail.com Jan 08 07:12AM -0800 ^

okay, i finally got this to work, but it will only work if i use a
unique scheme. if I try to do it without a standard http scheme, then
i can't get it to work -- even if I specify mimeType.




 Topic: DNS WHOIS query 
supporthttp://groups.google.com/group/android-developers/t/d0ec6ef3ffd07aba

JAlexoid (Aleksandr Panzin) jalex...@gmail.com Jan 08 06:58AM -0800 ^




JAlexoid (Aleksandr Panzin) jalex...@gmail.com Jan 08 07:07AM -0800 ^

http://www.dnsjava.org/ might help.

Though, how it works on Android I don't know

Record [] records = new Lookup(android.com, Type.NS).run();
for (int i = 0; i  records.length; i++) {
MXRecord mx = (MXRecord) records[i];
System.out.println(Host  + mx.getTarget() +  has preference ,
mx.getPriority());
}





 Topic: First attempt at LVL 
Licensinghttp://groups.google.com/group/android-developers/t/1699b73b26e2667b

Neilz neilhorn...@gmail.com Jan 08 06:40AM -0800 ^

Hi all. I'm implementing this into my app and reading through the
docs.

As I understand it I should be able to add a test email address (the
one set up in my device) and it should return whatever response I set.
However, all I'm getting back is Application error: NOT_MARKET_MANAGED

Do I have to upload my app to the market for this to work? Currently
it isn't, but the docs seem to tell my that this isn't necessary for
test accounts.

Thanks.



 Topic: About 
viewstubshttp://groups.google.com/group/android-developers/t/e94c0c717d53c482

Pedro Duque pmdu...@gmail.com Jan 08 02:34PM ^

I'm trying to gasp viewstubs but I feel I'm missing something.

As I understand, a viewstub only exists in a hierarchy until inflated
or until made visible. After that is replaced by its referenced
layout. This behaviour makes impossible to reinflate a inflated
viewstub. Is this correct?

The behaviour I was looking for was to have several buttons that would
open diferente viewstubs. When I click a button it would deflate the
previous layout and inflate the new one but this only works the first
time... After that the viewstub is gone...



 Topic: How to stop ADB 
serverhttp://groups.google.com/group/android-developers/t/e43f3d97256d178a

Kumar Bibek coomar@gmail.com Jan 08 06:20AM -0800 ^

What do you mean by dynamically? From inside an app? What would you
try to do that?

Anyway, to shut down the adb server, you just have to use this
commands

adb kill-server
adb start-server

These are command line tools available for you to interact with adb.




 Topic: What type of messaging would you 

Re: [android-developers] Digest for android-developers@googlegroups.com - 25 Messages in 19 Topics

2009-12-02 Thread Kai


android-developers@googlegroups.com wrote:

=
Today's Topic Summary
=

Group: android-developers@googlegroups.com
Url: http://groups.google.com/group/android-developers/topics

  - getLastKnownLocation *again* [1 Update]
http://groups.google.com/group/android-developers/t/458624ff8f78bafa
  - problem in aligning right column in the list [1 Update]
http://groups.google.com/group/android-developers/t/c8f3fddc884c1c32
  - Soft keypad doesn't appear if EditText.setOnClickListener() is set? [1 
 Update]
http://groups.google.com/group/android-developers/t/2651e329a1535c7d
  - are Animations always clipped to ViewGroup bounds? [3 Updates]
http://groups.google.com/group/android-developers/t/759d18c63cf7bfba
  - Is there a way to get notified when a new task is starting or finishing ? 
 [2 Updates]
http://groups.google.com/group/android-developers/t/297a664d0fc2a44a
  - The GPS Shutdown Thing [1 Update]
http://groups.google.com/group/android-developers/t/e687b3bfa9146f31
  - onTouch() not working properly, HTC Magic [2 Updates]
http://groups.google.com/group/android-developers/t/b2a20f0a79aa442f
  - running sqlite3 commands from app? [1 Update]
http://groups.google.com/group/android-developers/t/2a5e51bf59819368
  - GK : How to Use Android Open source Platform code [1 Update]
http://groups.google.com/group/android-developers/t/865673b00ca4a59a
  - Failed to fetch URL 
 https://dl-ssl.google.com/android/repository/repository.xml [1 Update]
http://groups.google.com/group/android-developers/t/63a44163a8d07cd9
  - Complex Object Collision Detection [1 Update]
http://groups.google.com/group/android-developers/t/a48ec22e9cf2b9e9
  - Android 2.0 emulator (Droid skin) crawls [1 Update]
http://groups.google.com/group/android-developers/t/9c09cd007eb18aa8
  - Can not access internet with emulator [1 Update]
http://groups.google.com/group/android-developers/t/3a5a089b9cc87653
  - Questin about gmail intents [2 Updates]
http://groups.google.com/group/android-developers/t/6eff92acec2dc563
  - How to detect the Widget is active in the current panel? [1 Update]
http://groups.google.com/group/android-developers/t/4a977d9e5ff502b2
  - ADC2 rank [1 Update]
http://groups.google.com/group/android-developers/t/7551df15eb9365e6
  - emulator sleep? [2 Updates]
http://groups.google.com/group/android-developers/t/c840eae7ae49d321
  - Accessing Remote Database using Android [1 Update]
http://groups.google.com/group/android-developers/t/46de389800cb5560
  - Checked List View am I missing something [1 Update]
http://groups.google.com/group/android-developers/t/e9e1dea18aaa176


=
Topic: getLastKnownLocation *again*
Url: http://groups.google.com/group/android-developers/t/458624ff8f78bafa
=

-- 1 of 1 --
From: stanlick stanl...@gmail.com
Date: Dec 02 11:53AM -0800
Url: http://groups.google.com/group/android-developers/msg/686c7ff2fb30052a

Didn't we put a man on the moon?  It can't be done seems a little lazy
today!

I have read all the posts about this topic and I understand the
arguments being made.  However, I would like to know how Google Maps
can return my *current* location yet while driving the same stretch of
road, the Android API often (not always) gives me a last known
location that was miles back.  I need to be able to rely on the API to
provide me with a *current location* and I have tried all the tricks
being proposed here and elsewhere.  Is there lower level code
someplace that could ping the phone's radio for a fresh fix?

If you have solved this riddle, I would be happy to pay for your
solution.

Peace,
Scott



=
Topic: problem in aligning right column in the list
Url: http://groups.google.com/group/android-developers/t/c8f3fddc884c1c32
=

-- 1 of 1 --
From: adag adjo...@googlemail.com
Date: Dec 02 11:47AM -0800
Url: http://groups.google.com/group/android-developers/msg/475bf4c4699e6908

Worked out with android:weightSum
quite nice..!!!




=
Topic: Soft keypad doesn't appear if EditText.setOnClickListener() is set?
Url: http://groups.google.com/group/android-developers/t/2651e329a1535c7d
=

-- 1 of 1 --
From: Mark Wyszomierski mar...@gmail.com
Date: Dec 02 11:46AM -0800
Url: http://groups.google.com/group/android-developers/msg/90ec7fa7174f7fb6

Still stuck on this, if anyone has a suggested work around -