回复:[android-developers] Abridged summary of android-developers@googlegroups.com- 8 updates in 4 topics

2014-04-10 Thread ????????
don't send -- 原始邮件 -- 发件人: android-developersandroid-developers@googlegroups.com 发送时间: 2014年4月9日(星期三) 下午2:12 收件人: Abridged recipientsandroid-developers@googlegroups.com; 主题: [android-developers] Abridged summary of android-developers@googlegroups.com- 8 updates in

[android-developers] Google Play to multi - room audio systems (Sonos)

2014-04-10 Thread Kim
Will the new ability to play music from Google Play to Sonos be open to other multi-room audio system companies? If so, how do we find out about this. As the developer of one of the first multi-room audio controller apps for Android, I feel a little left out :-( If this post is not appropriate

[android-developers] Contacts: to show or not to show?

2014-04-10 Thread Mirko Schenk
Hi, I'm getting a list of contacts with getContentResolver().query( ContactsContract.Groups.CONTENT_URI, ... ). This works quite well, but I also get a lot of google+ contacts which don't show up in the People app or other contact selections. I found some information about an UNGROUPED_VISIBLE

[android-developers] Sound effects in NumberPicker

2014-04-10 Thread Pankaj Chawla
Hi Did a quick check and seems like NumberPicker doesnt support sound effects associated with scrolling. Is this correct and if yes, is there some way to make it happen? Did google and couldnt find anything that could get me started and hence the query here. —  Thanks Pankaj -- You received

[android-developers] Re: how to set the size of tab in tabHost?

2014-04-10 Thread sunita
Bellow code worked fine for me - LayoutParams params = tabHost.getTabWidget().getChildAt(0).getLayoutParams(); params.width = 170; params.height = 120; tabHost.getTabWidget().getChildAt(0).setLayoutParams(params ); On Thursday, May 28, 2009 11:40:26 PM UTC-4, stonestrange wrote: hi,guys.

[android-developers] Encrypting integer to integer

2014-04-10 Thread nikhilesh
Hi, I am looking some way to encrypt/decrypt integer value to integer value or a float value to float. Any one have any idea. Please suggest. Thanks -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Encrypting integer to integer

2014-04-10 Thread Nikolay Elenkov
On Fri, Apr 11, 2014 at 1:14 PM, nikhilesh nikhileshsingh...@gmail.com wrote: Hi, I am looking some way to encrypt/decrypt integer value to integer value or a float value to float. Any one have any idea. 1. Convert integer to byte array 2. Encrypt byte array 3. Transmit 4. Decrypt byte array

Re: [android-developers] Encrypting integer to integer

2014-04-10 Thread nikhilesh
Hi Nikolay, Thanks for the reply. I tried the same thing but no success. Please see code snippet below: public class Crypt{ private final static String ALGORITHM = AES/CBC/PKCS5Padding; private Cipher cipher = null; private SecretKey key = null; public Crypt(String secretKey) throws

Re: [android-developers] Encrypting integer to integer

2014-04-10 Thread Nikolay Elenkov
On Fri, Apr 11, 2014 at 1:49 PM, nikhilesh nikhileshsingh...@gmail.com wrote: Hi Nikolay, Thanks for the reply. I tried the same thing but no success. Please see code snippet below: You are on the right track, but the cipher() should return byte[], and decipher() should take a byte[] as input

Re: [android-developers] Encrypting integer to integer

2014-04-10 Thread Nikolay Elenkov
On Fri, Apr 11, 2014 at 2:15 PM, Nikolay Elenkov nikolay.elen...@gmail.com wrote: On Fri, Apr 11, 2014 at 1:49 PM, nikhilesh nikhileshsingh...@gmail.com wrote: Hi Nikolay, Thanks for the reply. I tried the same thing but no success. Please see code snippet below: You are on the right