Tecnologia do Blogger.
RSS

[androidbrasil-dev] Facebook Graph não retorna todas fotos

Pessoal,

Estou fazendo uma consulta simples no Facebook Graph Explorer:

E notei que um álbum de 150 fotos está retornando apenas 59. Ao analisar, notei que as fotos que estão faltando são as que não tem nenhuma legenda (propriedade "name" no JSON).

Alguém sabe como resolver isso ? Pq só está retornando fotos que possuem legendas ? Não deveria retornar todas ?

Não encontrei nada na web sobre isso.
Agradeço antecipadamente qq ajuda.

[]'s

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[androidbrasil-dev] New research shows we prefer ‘freemium’ apps, 98% of Play Store revenue comes from them

http://androidcommunity.com/new-research-shows-we-prefer-freemium-apps-98-of-play-store-revenue-comes-from-them-20131230/

Enviado via Galaxy S4

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Re: [androidbrasil-dev] Android-Universal-Image-Loader - IOException: Cannot reset

Complementando, esse é o meu loader:

public static void initImageLoader(Context context) {
ImageLoaderConfiguration config = new ImageLoaderConfiguration.Builder(context)
.threadPriority(Thread.NORM_PRIORITY - 2)
.denyCacheImageMultipleSizesInMemory()
.discCacheFileNameGenerator(new Md5FileNameGenerator())
.tasksProcessingOrder(QueueProcessingType.LIFO)
.writeDebugLogs() // Remove for release app
.build();
ImageLoader.getInstance().init(config);
}

Essas são as options na Activity:
options = new DisplayImageOptions.Builder()
.showImageOnLoading(R.drawable.ic_stub)
.showImageForEmptyUri(R.drawable.ic_empty)
.showImageOnFail(R.drawable.ic_error).cacheInMemory(true)
.cacheOnDisc(true).bitmapConfig(Bitmap.Config.RGB_565).build();

--
Gabriel Augusto 
 |  gabrielaugustodm
013 9 97940055


2013/12/30 Gabriel Augusto <gabrielaugustodm@gmail.com>
Pessoal,

Estou com um problema para carregar as imagens apenas no Moto G. Encontrei uma pergunta parecida no stack: http://stackoverflow.com/questions/19893222/java-io-ioexception-cannot-reset-whats-wrong

Segue o log:
12-30 17:15:42.228: E/ImageLoader(12648): Cannot reset
12-30 17:15:42.228: E/ImageLoader(12648): java.io.IOException: Cannot reset
12-30 17:15:42.228: E/ImageLoader(12648): at com.nostra13.universalimageloader.core.assist.MarkableInputStream.reset(MarkableInputStream.java:97)
12-30 17:15:42.228: E/ImageLoader(12648): at com.nostra13.universalimageloader.core.decode.BaseImageDecoder.decode(BaseImageDecoder.java:78)
12-30 17:15:42.228: E/ImageLoader(12648): at com.nostra13.universalimageloader.core.LoadAndDisplayImageTask.decodeImage(LoadAndDisplayImageTask.java:305)
12-30 17:15:42.228: E/ImageLoader(12648): at com.nostra13.universalimageloader.core.LoadAndDisplayImageTask.tryLoadBitmap(LoadAndDisplayImageTask.java:260)
12-30 17:15:42.228: E/ImageLoader(12648): at com.nostra13.universalimageloader.core.LoadAndDisplayImageTask.run(LoadAndDisplayImageTask.java:129)
12-30 17:15:42.228: E/ImageLoader(12648): at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1080)
12-30 17:15:42.228: E/ImageLoader(12648): at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:573)
12-30 17:15:42.228: E/ImageLoader(12648): at java.lang.Thread.run(Thread.java:841)

Alguem tem alguma ideia?

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@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 Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[androidbrasil-dev] Android-Universal-Image-Loader - IOException: Cannot reset

Pessoal,

Estou com um problema para carregar as imagens apenas no Moto G. Encontrei uma pergunta parecida no stack: http://stackoverflow.com/questions/19893222/java-io-ioexception-cannot-reset-whats-wrong

Segue o log:
12-30 17:15:42.228: E/ImageLoader(12648): Cannot reset
12-30 17:15:42.228: E/ImageLoader(12648): java.io.IOException: Cannot reset
12-30 17:15:42.228: E/ImageLoader(12648): at com.nostra13.universalimageloader.core.assist.MarkableInputStream.reset(MarkableInputStream.java:97)
12-30 17:15:42.228: E/ImageLoader(12648): at com.nostra13.universalimageloader.core.decode.BaseImageDecoder.decode(BaseImageDecoder.java:78)
12-30 17:15:42.228: E/ImageLoader(12648): at com.nostra13.universalimageloader.core.LoadAndDisplayImageTask.decodeImage(LoadAndDisplayImageTask.java:305)
12-30 17:15:42.228: E/ImageLoader(12648): at com.nostra13.universalimageloader.core.LoadAndDisplayImageTask.tryLoadBitmap(LoadAndDisplayImageTask.java:260)
12-30 17:15:42.228: E/ImageLoader(12648): at com.nostra13.universalimageloader.core.LoadAndDisplayImageTask.run(LoadAndDisplayImageTask.java:129)
12-30 17:15:42.228: E/ImageLoader(12648): at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1080)
12-30 17:15:42.228: E/ImageLoader(12648): at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:573)
12-30 17:15:42.228: E/ImageLoader(12648): at java.lang.Thread.run(Thread.java:841)

Alguem tem alguma ideia?

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Re: [androidbrasil-dev] Tela para resolução baixa (240x320) - 3"

Só uma correção, h, w e sw funcionam a partir do 3.2.



2013/12/26 Deivison Servat Sporteman <deivison.sporteman@gmail.com>
A partir do Android >= 3.0  já da para usar o sw ( smallest width ).

Geralmente, minhas configurações para smartphones ficam:

res ->
    values-small
        dimen.xml
     values-sw320dp
        dimen.xml
    values-sw360dp
        dimen.xml

Abraços


Em 26 de dezembro de 2013 17:45, Felipe Aron <felipearon@gmail.com> escreveu:

Entendi Rudson. 

Vou dar uma lida/estudada aqui.

Valeu pela dica! :D


Em 26 de dezembro de 2013 17:33, Rudson Lima <rudsonlive@gmail.com> escreveu:

Criar vários xmls só se realmente for necessário..
Em muitos casos o dimens.xml pode resolver seu problema..

Comigo funciona muito bem....


Em 26 de dezembro de 2013 16:29, Felipe Aron <felipearon@gmail.com> escreveu:
Fala galera blz?!

Recentemente fiz um freela, e montei o projeto visando tela com 4"

Porém agora pintou o uso do Galaxy Y de 3" (240x320).

Pelo que me lembre, é possível criar uma pasta no /res para resolução baixa e lá adicionar o xml da activity ajustando para o tamanho correto.

Seria isso mesmo? Que pasta seria?

Desde já agradeço pela ajuda. 

--
سمووحخ ̷̴̐ خ ̷̴̐ خ ̷̴̐ خ امارتيخ ̷̴̐ خ
Analista-Programador

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.



--
Rudson Lima ( live-O )
Desenvolvedor Android - Web Service C# - SQL Server - Delphi
+55 85 87050560

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.



--
سمووحخ ̷̴̐ خ ̷̴̐ خ ̷̴̐ خ امارتيخ ̷̴̐ خ
Analista-Programador

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@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 Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@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 Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Re: [androidbrasil-dev] Gerar imagem do Android Plot



2013/12/29 Matheus Piscioneri <mxczpiscioneri@gmail.com>
Boa tarde.
Alguém sabe me dizer como gero uma imagem de um gráfico.
Consigo gerar o gráfico de linha normalmente, mas gostaria de enviar por email...

Obrigado.

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.



--
                                              - Marcelo Henrique -

  "Se não puder se destacar pelo talento, vença pelo esforço." (Dave Weinbaum).
              "Mate o pecado antes que ele o mate." ( Richard Baxter ).

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Re: [androidbrasil-dev] Curso online gratuito de Android no Coursera

Show. Estou nessa.


Em 27 de dezembro de 2013 09:06, Suelen Goularte Carvalho <suelengcarvalho@gmail.com> escreveu:
Bem interessante :)

--

Suelen Goularte Carvalho
suelengc.com.br | @suelengc


2013/12/27 Carlos Alberto Pinto <caneto@gmail.com>
Tambem me escrevi, achei muito legal, ainda mais free :)


Carlos Alberto
Desenvolvedor Web/PHP/Vb.Net/C#
Desenvolvendo projetos para Android/Java


Meu primeiro APP publicado na loja do Android (Google Play)
Contas Trabalhistas (App para android)

Minha Lista de APPs
https://tapfame.com/carlos-alberto-pinto/





Em 26 de dezembro de 2013 17:20, Felipe Aron <felipearon@gmail.com> escreveu:

Legal, já me inscrevi! :D

Sempre bom revisar o que sabe e aprender coisas novas!


Em 26 de dezembro de 2013 16:46, Henrique Deodato <h3nr1ke@gmail.com> escreveu:

Show de bola... valew pela dica...

vou compartilhar tb...



Em 26 de dezembro de 2013 16:35, Erick Couto <erickcouto79@gmail.com> escreveu:

muito legal.. vou ver se faço.


Em 26 de dezembro de 2013 16:23, Ubiratan Soares <ubiratan.f.soares@gmail.com> escreveu:

Fala galera!

Sei que há muitos iniciantes aqui no fórum , e para aqueles cujo o inglês não é um obstáculo, eu gostaria de deixar uma dica que pode ajudar quem está procurando algum treinamento online e gratuito

Ao fuçar hoje no Coursera, descobri que em janeiro haverá um curso voltado para o básico do desenvolvimento em Android. Esse curso trata em sua maioria dos fundamentos da plataforma, será ministrado por um professor da Universade de Maryland; tem duração de oito semanas e como a maioria dos cursos do Coursera, tende a passar longe de ser um cursinho inocente. 

Para aqueles que quiserem, dá até para pagar USD 50,00 e ter um certificado todo bonitinho para mostrar por aí... :P

Para quem está no comecinho e quer aprender PRA VALER, eu recomendo FORTEMENTE !


Abraços!

----------------------------------------------------------
Ubiratan Soares

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.



--
-----------------------------------------------------------------
Erick Couto
Java | Android | PHP

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@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 Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.



--
سمووحخ ̷̴̐ خ ̷̴̐ خ ̷̴̐ خ امارتيخ ̷̴̐ خ
Analista-Programador

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@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 Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@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 Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@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 Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[androidbrasil-dev] Gerar imagem do Android Plot

Boa tarde.
Alguém sabe me dizer como gero uma imagem de um gráfico.
Consigo gerar o gráfico de linha normalmente, mas gostaria de enviar por email...

Obrigado.

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

~Notícias Convergentes~ Está pronto o Design de Permacultura para a Aldeia das Amoreiras!


Brevemente poderão ler o nosso Plano Geral de Permacultura para a Aldeia das Amoreiras!

Fiquem atentos...


www.centrodeconvergencia.org

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Re: [androidbrasil-dev] Backup da Base usando Google Drive


Achei esse app que usa backup com google drive perfeitamente! Alguém com alguma experiência parecida?


Em 27 de dezembro de 2013 22:34, Carlos Terceiro <carlosaugustoterceiro@gmail.com> escreveu:
Galera estou faz uma semana apanhando para poder usar o google drive para fazer backup dos dados do meu aplicativo!
No meu app já uso o Dropobox e achei bem simples e bem pratico os tutoriais deles. Mas com google Drive só apanho!
Gostaria de saber se alguém tem alguma dica. alguém já fez backup de arquivos usando Google Drive do seu app??
Qualquer ajuda é bem vinda.

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.



--
Atenciosamente,

Carlos Terceiro.

Analista Desenvolvedor Web @TechWay Info 
Android Developer @Delxmobile
Técnico em Informática - IFCE
OCJP - Oracle Certified Professional, Java SE 6 Programmer
(085) 8777-7359

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[androidbrasil-dev] Backup da Base usando Google Drive

Galera estou faz uma semana apanhando para poder usar o google drive para fazer backup dos dados do meu aplicativo!
No meu app já uso o Dropobox e achei bem simples e bem pratico os tutoriais deles. Mas com google Drive só apanho!
Gostaria de saber se alguém tem alguma dica. alguém já fez backup de arquivos usando Google Drive do seu app??
Qualquer ajuda é bem vinda.

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[androidbrasil-dev] Problema com o tablet Multilaser m7

Pessoal,
estou recebendo vários e-mail de pessoas que possuem esse dispositivo não conseguem instalar meu app.
"dispositivo incompatível".

Porém como ele é de 7 polegadas, era para ele ser compatível. Pois eu coloquei no meu manifest que o app é compatível apenas com telas large e xlarge.
Alguém ja passou por esse problema e(ou) sabe a solução?

    <supports-screens 
        android:xlargeScreens="true"
        android:largeScreens="true"
        android:resizeable="false"
       
        />
    
    <compatible-screens >
        <screen android:screenSize="large" android:screenDensity="ldpi" />
        <screen android:screenSize="large" android:screenDensity="hdpi" />
        <screen android:screenSize="large" android:screenDensity="mdpi" />
        <screen android:screenSize="large" android:screenDensity="xhdpi" />
        
        <screen android:screenSize="xlarge" android:screenDensity="ldpi" />
        <screen android:screenSize="xlarge" android:screenDensity="mdpi" />
        <screen android:screenSize="xlarge" android:screenDensity="hdpi" />
        <screen android:screenSize="xlarge" android:screenDensity="xhdpi" />
    </compatible-screens>

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[androidbrasil-dev] Google Play - Ver quem clicou no +1

Pessoal,

na tela do aplicativo tem o botão g+1, e dá para pegar a lista de quem clicou ali?

--
Atenciosamente,
Tiago Braga Machado

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Re: [androidbrasil-dev] Curso online gratuito de Android no Coursera

Bem interessante :)

--

Suelen Goularte Carvalho
suelengc.com.br | @suelengc
+55 11 99336-7069


2013/12/27 Carlos Alberto Pinto <caneto@gmail.com>
Tambem me escrevi, achei muito legal, ainda mais free :)


Carlos Alberto
Desenvolvedor Web/PHP/Vb.Net/C#
Desenvolvendo projetos para Android/Java


Meu primeiro APP publicado na loja do Android (Google Play)
Contas Trabalhistas (App para android)

Minha Lista de APPs
https://tapfame.com/carlos-alberto-pinto/





Em 26 de dezembro de 2013 17:20, Felipe Aron <felipearon@gmail.com> escreveu:

Legal, já me inscrevi! :D

Sempre bom revisar o que sabe e aprender coisas novas!


Em 26 de dezembro de 2013 16:46, Henrique Deodato <h3nr1ke@gmail.com> escreveu:

Show de bola... valew pela dica...

vou compartilhar tb...



Em 26 de dezembro de 2013 16:35, Erick Couto <erickcouto79@gmail.com> escreveu:

muito legal.. vou ver se faço.


Em 26 de dezembro de 2013 16:23, Ubiratan Soares <ubiratan.f.soares@gmail.com> escreveu:

Fala galera!

Sei que há muitos iniciantes aqui no fórum , e para aqueles cujo o inglês não é um obstáculo, eu gostaria de deixar uma dica que pode ajudar quem está procurando algum treinamento online e gratuito

Ao fuçar hoje no Coursera, descobri que em janeiro haverá um curso voltado para o básico do desenvolvimento em Android. Esse curso trata em sua maioria dos fundamentos da plataforma, será ministrado por um professor da Universade de Maryland; tem duração de oito semanas e como a maioria dos cursos do Coursera, tende a passar longe de ser um cursinho inocente. 

Para aqueles que quiserem, dá até para pagar USD 50,00 e ter um certificado todo bonitinho para mostrar por aí... :P

Para quem está no comecinho e quer aprender PRA VALER, eu recomendo FORTEMENTE !


Abraços!

----------------------------------------------------------
Ubiratan Soares

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.



--
-----------------------------------------------------------------
Erick Couto
Java | Android | PHP

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@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 Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.



--
سمووحخ ̷̴̐ خ ̷̴̐ خ ̷̴̐ خ امارتيخ ̷̴̐ خ
Analista-Programador

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@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 Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@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 Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Re: [androidbrasil-dev] Tela para resolução baixa (240x320) - 3"

Oi Felilpe, depende do modelo, pois minha esposa tem um Galaxy Y Duos TV de 3.2pol com android 4.12

Os modelos mais novos estão com 4


Carlos Alberto
Desenvolvedor Web/PHP/Vb.Net/C#
Desenvolvendo projetos para Android/Java


Meu primeiro APP publicado na loja do Android (Google Play)
Contas Trabalhistas (App para android)

Minha Lista de APPs
https://tapfame.com/carlos-alberto-pinto/





Em 26 de dezembro de 2013 17:52, Felipe Aron <felipearon@gmail.com> escreveu:
Valeu Deivison, porém como deve saber, o Galaxy Y deve ter no máximo android 2.2 ou 2.3

To vendo aqui, acho que vou seguir a dica do dimen mesmo. Mais prático. :D


Em 26 de dezembro de 2013 17:48, Deivison Servat Sporteman <deivison.sporteman@gmail.com> escreveu:

A partir do Android >= 3.0  já da para usar o sw ( smallest width ).

Geralmente, minhas configurações para smartphones ficam:

res ->
    values-small
        dimen.xml
     values-sw320dp
        dimen.xml
    values-sw360dp
        dimen.xml

Abraços


Em 26 de dezembro de 2013 17:45, Felipe Aron <felipearon@gmail.com> escreveu:

Entendi Rudson. 

Vou dar uma lida/estudada aqui.

Valeu pela dica! :D


Em 26 de dezembro de 2013 17:33, Rudson Lima <rudsonlive@gmail.com> escreveu:

Criar vários xmls só se realmente for necessário..
Em muitos casos o dimens.xml pode resolver seu problema..

Comigo funciona muito bem....


Em 26 de dezembro de 2013 16:29, Felipe Aron <felipearon@gmail.com> escreveu:
Fala galera blz?!

Recentemente fiz um freela, e montei o projeto visando tela com 4"

Porém agora pintou o uso do Galaxy Y de 3" (240x320).

Pelo que me lembre, é possível criar uma pasta no /res para resolução baixa e lá adicionar o xml da activity ajustando para o tamanho correto.

Seria isso mesmo? Que pasta seria?

Desde já agradeço pela ajuda. 

--
سمووحخ ̷̴̐ خ ̷̴̐ خ ̷̴̐ خ امارتيخ ̷̴̐ خ
Analista-Programador

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.



--
Rudson Lima ( live-O )
Desenvolvedor Android - Web Service C# - SQL Server - Delphi
+55 85 87050560

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.



--
سمووحخ ̷̴̐ خ ̷̴̐ خ ̷̴̐ خ امارتيخ ̷̴̐ خ
Analista-Programador

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@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 Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.



--
سمووحخ ̷̴̐ خ ̷̴̐ خ ̷̴̐ خ امارتيخ ̷̴̐ خ
Analista-Programador

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@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 Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Re: [androidbrasil-dev] Padrões de Projetos para Aplicações Móveis

Opa... sei que já tem bastante conteúdo ae...

mas se for para interface, podemos buscar no site do android mesmo 





Em 5 de novembro de 2013 10:38, Pedro Subutzki <Pepeu> <falecompepeu@gmail.com> escreveu:
Leonardo,
Acho difícil rotular como "Padrões de projeto para dispositivos moveis".
Cada padrão foi criado para resolver um determinado tipo de problema independente da plataforma.

Se quiser estudar sobre padrões recomendo o livro "Head first - Design Patterns" que aborda diversos padrões com exemplos simples e bem passo-a-passo sobre a origem do problema (existe versão traduzida pra PT).
Recomendo também o site DoFactory: http://www.dofactory.com/Patterns/Patterns.aspx que é voltado para .NET mas o conceito do padrão é o mesmo para qualquer linguagem OO.



Abraços,
Pedro Subutzki
__________________________________________
HADI - Makes SQLite in Android easy and simple
https://github.com/PepeuCps/Hadi


Em 5 de novembro de 2013 10:26, Rafael de Araújo <orafaaraujo@gmail.com> escreveu:

Olá Tiago,

É isso mesmo, padrões de UI e UX.
Ele não aborda nada de código, boas práticas de código... quando comprei também pensei que encontraria algo nessa linha mas não tem.

É um bom livro para te ajudar a construir apps com padrões usuais, que funcionam bem em outras apps e que os usuários não terão problemas em usar por não ficar perdidos.

Esse é o site do livro.

Você pode se cadastrar pra receber até 8 trechos dele no seu e-mail (um por dia) para saber se gosta ou não.

Abraços


Att,
Rafael de Araújo


Em 5 de novembro de 2013 10:20, Tiago Emerick <tiagoemerick@gmail.com> escreveu:

Rafael de Araujo

estive olhando este livro que voce indicou e tenho uma duvida:
No site oficial dele fala muito de padrao de UI... Um capitulo para icon launcher, outro para grid e por aí vai...
Me diga.. esse livro aborda apenas padroes de interface?
Tem padroes de codigo também? Boas praticas, etc?

Fiquei muito interessado no livro, se puder me ajudar a identificar estes pontos..

Em segunda-feira, 4 de novembro de 2013 23h36min18s UTC-2, Rafael de Araújo escreveu:
Fala amigo

eu tenho esse livro aqui

Não tem nada de código... mas ele aborda padrões de aplicações android e seus porques.

Espero ter ajudado.

Abraços

Att,
Rafael de Araújo


2013/11/4 Leonardo Santos da Mata <leonard...@gmail.com>
olá galera,

 Eu tenho de fazer um trabalho sobre Padrões de Projetos para Aplicações Móveis. Na verdade eu tenho de fazer um artigo científico.

Alguém conhece algum padrão de projeto para aplicações para dispositivos móveis para me informar.

--
Cordialmente,

Leonardo Santos da Mata

E-mail: leonard...@gmail.com
About.me: http://about.me/leonardodamata
Twitter:  twitter.com/lsmata

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-...@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 Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@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 Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@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 Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@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 Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Re: [androidbrasil-dev] android + phonegap + senchatouch

Opa... quando precisei usar fui direto no site dos caras mesmo...


^^V


2013/12/26 Leonardo Santos da Mata <leonardodamata@gmail.com>
Boa noite,

Pessoal alguém aí trabalha com phonegap e sencha touch?

caso a resposta for sim poderia me indicar algum material para eu dar um estudada?

--
Cordialmente,

Leonardo Santos da Mata

E-mail: leonardodamata@gmail.com
About.me: http://about.me/leonardodamata
Twitter:  twitter.com/lsmata

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@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 Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Re: [androidbrasil-dev] Curso online gratuito de Android no Coursera

Tambem me escrevi, achei muito legal, ainda mais free :)


Carlos Alberto
Desenvolvedor Web/PHP/Vb.Net/C#
Desenvolvendo projetos para Android/Java


Meu primeiro APP publicado na loja do Android (Google Play)
Contas Trabalhistas (App para android)

Minha Lista de APPs
https://tapfame.com/carlos-alberto-pinto/





Em 26 de dezembro de 2013 17:20, Felipe Aron <felipearon@gmail.com> escreveu:
Legal, já me inscrevi! :D

Sempre bom revisar o que sabe e aprender coisas novas!


Em 26 de dezembro de 2013 16:46, Henrique Deodato <h3nr1ke@gmail.com> escreveu:

Show de bola... valew pela dica...

vou compartilhar tb...



Em 26 de dezembro de 2013 16:35, Erick Couto <erickcouto79@gmail.com> escreveu:

muito legal.. vou ver se faço.


Em 26 de dezembro de 2013 16:23, Ubiratan Soares <ubiratan.f.soares@gmail.com> escreveu:

Fala galera!

Sei que há muitos iniciantes aqui no fórum , e para aqueles cujo o inglês não é um obstáculo, eu gostaria de deixar uma dica que pode ajudar quem está procurando algum treinamento online e gratuito

Ao fuçar hoje no Coursera, descobri que em janeiro haverá um curso voltado para o básico do desenvolvimento em Android. Esse curso trata em sua maioria dos fundamentos da plataforma, será ministrado por um professor da Universade de Maryland; tem duração de oito semanas e como a maioria dos cursos do Coursera, tende a passar longe de ser um cursinho inocente. 

Para aqueles que quiserem, dá até para pagar USD 50,00 e ter um certificado todo bonitinho para mostrar por aí... :P

Para quem está no comecinho e quer aprender PRA VALER, eu recomendo FORTEMENTE !


Abraços!

----------------------------------------------------------
Ubiratan Soares

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.



--
-----------------------------------------------------------------
Erick Couto
Java | Android | PHP

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@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 Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.



--
سمووحخ ̷̴̐ خ ̷̴̐ خ ̷̴̐ خ امارتيخ ̷̴̐ خ
Analista-Programador

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@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 Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Re: [androidbrasil-dev] Re: Publicidade, Marketing e SEO

Já usei, é muito caro, e tem pouca visibilidade no caso do Brasil (isso é: tu pode por dinheiro infinito na campanha, que uma hora as views param de subir).

Mas é menos ruim que o AppBrain (ele funciona, seus downloads sobem bem rápido, só que as desistalações também, e assim que a campanha acaba, seu ranking afunda e ficar menor do que era antes da campanha)


2013/12/26 José Adolfo da Silva Júnior <zadojr@gmail.com>
Acabei de conhecer o divulgador http://www.google.com.br/ads/admob/ 
Experimente!


Em terça-feira, 22 de janeiro de 2013 15h12min52s UTC-2, Speeder escreveu:
Eu sou sócio de uma empresa que faz jogos de criança.

Temos já uns 4 aplicativos no Google Play, mas mesmo os que são de graça (e não tem propaganda nem micro-transação dentro) estão com uma quantidade de downloads que acho meio triste.

Não creio que seja um problema de qualidade, críticos nos deram notas altas (inclusive alguns 5/5) e nossas notas no Google Play são todas acima de 4.

Alguém aí tem algumas dicas ou algo assim de como fazer seu aplicativo ser mais visível no Google Play?

Maurício Gomes

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@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 Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[androidbrasil-dev] [Off] = Codigo fonte de aplicativo de simulado

boa tarde,

a alguns dias visitei o site de um dos integrantes da lista  e vi que ele estava vendo codigo fonte de alguns aplicativos de Quiz / Simulados (entre eles de transito e concursos), mas agora não estou achando mais o contato deste membro. 

O developer poderia enviar email diretamente pra mim edney.imme@gmail.com

obrigado e desculpe pelo Off. 

Att.
Edney Marcel Imme

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Re: [androidbrasil-dev] Duvida banco de dados

É mais uma questão de lógica do que código! Siga o fluxo:

a) usuário digita o valor e clicar em "salvar"

b) pega o último saldo gravado ( select first 1 saldo from dados order by _id desc )

b-1) se saldo == null então -> saldo = valor (primeiro registro)

b-2) se não -> saldo = ultimo_saldo + valor (próximos registros)


Em 26 de dezembro de 2013 20:01, Bruno Santos <brunosantosfla@gmail.com> escreveu:
Fala galera, beleza?
Então meu problema da vez é o seguinte -> No meu app tenho na interface uma edit text, onde quando o usuario digita um valor ele pega esse valor e armazena no banco de dados. Eu também tenho outro variavel(saldo) que queria que ela ficasse como um incremento(fosse aumentando toda vez que o usuario digitasse um valor novo), sem ocupar várias linhas de uma tabela, ocupando apenas uma, por exemplo: O usuário digita algum valor 5, 2 vezes.

valor | saldo
5       |  5
5          ^ ---> Seria atualizado pra 10, sem a necessidade de criar uma nova linha, apenas sobrepondo. Alguém sabe como faço isso? Postarei o código que estou utilizando abaixo. Abraços e obrigado!!

public void gravabanco(Double valor, Double saldo){
       
            bancodedados = openOrCreateDatabase(nomedobanco, MODE_WORLD_READABLE, null);
            String SQL = "INSERT INTO dados (valor, saldo) VALUES('"+valor+"', '"+saldo+"' );";
            bancodedados.execSQL(SQL);
           
       
        }

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.



--
سمووحخ ̷̴̐ خ ̷̴̐ خ ̷̴̐ خ امارتيخ ̷̴̐ خ
Analista-Programador

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[androidbrasil-dev] Duvida banco de dados

Fala galera, beleza?
Então meu problema da vez é o seguinte -> No meu app tenho na interface uma edit text, onde quando o usuario digita um valor ele pega esse valor e armazena no banco de dados. Eu também tenho outro variavel(saldo) que queria que ela ficasse como um incremento(fosse aumentando toda vez que o usuario digitasse um valor novo), sem ocupar várias linhas de uma tabela, ocupando apenas uma, por exemplo: O usuário digita algum valor 5, 2 vezes.

valor | saldo
5       |  5
5          ^ ---> Seria atualizado pra 10, sem a necessidade de criar uma nova linha, apenas sobrepondo. Alguém sabe como faço isso? Postarei o código que estou utilizando abaixo. Abraços e obrigado!!

public void gravabanco(Double valor, Double saldo){
       
            bancodedados = openOrCreateDatabase(nomedobanco, MODE_WORLD_READABLE, null);
            String SQL = "INSERT INTO dados (valor, saldo) VALUES('"+valor+"', '"+saldo+"' );";
            bancodedados.execSQL(SQL);
           
       
        }

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[androidbrasil-dev] android + phonegap + senchatouch

Boa noite,

Pessoal alguém aí trabalha com phonegap e sencha touch?

caso a resposta for sim poderia me indicar algum material para eu dar um estudada?

--
Cordialmente,

Leonardo Santos da Mata

E-mail: leonardodamata@gmail.com
About.me: http://about.me/leonardodamata
Twitter:  twitter.com/lsmata

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Re: [androidbrasil-dev] Tela para resolução baixa (240x320) - 3"

Valeu Deivison, porém como deve saber, o Galaxy Y deve ter no máximo android 2.2 ou 2.3

To vendo aqui, acho que vou seguir a dica do dimen mesmo. Mais prático. :D


Em 26 de dezembro de 2013 17:48, Deivison Servat Sporteman <deivison.sporteman@gmail.com> escreveu:
A partir do Android >= 3.0  já da para usar o sw ( smallest width ).

Geralmente, minhas configurações para smartphones ficam:

res ->
    values-small
        dimen.xml
     values-sw320dp
        dimen.xml
    values-sw360dp
        dimen.xml

Abraços


Em 26 de dezembro de 2013 17:45, Felipe Aron <felipearon@gmail.com> escreveu:

Entendi Rudson. 

Vou dar uma lida/estudada aqui.

Valeu pela dica! :D


Em 26 de dezembro de 2013 17:33, Rudson Lima <rudsonlive@gmail.com> escreveu:

Criar vários xmls só se realmente for necessário..
Em muitos casos o dimens.xml pode resolver seu problema..

Comigo funciona muito bem....


Em 26 de dezembro de 2013 16:29, Felipe Aron <felipearon@gmail.com> escreveu:
Fala galera blz?!

Recentemente fiz um freela, e montei o projeto visando tela com 4"

Porém agora pintou o uso do Galaxy Y de 3" (240x320).

Pelo que me lembre, é possível criar uma pasta no /res para resolução baixa e lá adicionar o xml da activity ajustando para o tamanho correto.

Seria isso mesmo? Que pasta seria?

Desde já agradeço pela ajuda. 

--
سمووحخ ̷̴̐ خ ̷̴̐ خ ̷̴̐ خ امارتيخ ̷̴̐ خ
Analista-Programador

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.



--
Rudson Lima ( live-O )
Desenvolvedor Android - Web Service C# - SQL Server - Delphi
+55 85 87050560

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.



--
سمووحخ ̷̴̐ خ ̷̴̐ خ ̷̴̐ خ امارتيخ ̷̴̐ خ
Analista-Programador

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@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 Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.



--
سمووحخ ̷̴̐ خ ̷̴̐ خ ̷̴̐ خ امارتيخ ̷̴̐ خ
Analista-Programador

--
You received this message because you are subscribed to the Google Groups "Android Brasil - Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to androidbrasil-dev+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS