Tecnologia do Blogger.
RSS

[androidbrasil-dev] EditText multiline sem tecla de nova linha

Pessoal,

Indo direto a pergunta:
Como se criar um EditText multiline com softKeyboard de input=text (ou seja, sem tecla de nova linha) ?

Quem usa a app do twitter, deve ter notado que esta não permite dar Enter (nova linha), mas assim que o texto ultrapassa o espaço disponível na tela, quebra automaticamente uma nova linha ao invés fazer um scroll horizontal.

Abs,

--
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] Re: Leitura de arquivos + sistema de arquivos interno

Tiveee o mesmo problemaa
Tão comum abrir um arquivo txt  em um aplicaçao java normal... eu tava indignado ja, do porquê não tava conseguindo ler na aplicação android!!!
Duro que quebrei mt a cabeça para depois tentar procurar aqui =/
Mas vlwsss... Obrigado aqui pelo posttt \o/

--
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] [OFF] Vaga desenvolvedor Curitiba/PR

Pelo salário, deve ser JR.

Em 31/01/2013 17:34, "Lucas Xavier" <lucasxas@gmail.com> escreveu:
É vaga para Jr, Sr ou Pl?

--
Atenciosamente,

Lucas Xavier


Em 30 de janeiro de 2013 20:23, Diogo Domanski <diogo.domanski@gmail.com> escreveu:
Olá Pessoal,

Gostaria de divulgar uma vaga para desenvolvedor Android em Curitiba/PR.

Vaga desenvolvedor Android
Empresa: EBECOM
Email: atendimento@ebecom.com.br
Telefone: 41 3016-3266
Salário: R$ 3000,00
Regime de contrato: CLT (período experiência 3 meses) ou CNJP.
Regime trabalho: Alocado na sede da empresa em Curitiba.
Descrição :
Desenvolvedor Android para trabalhar em projetos envolvendo georreferenciamento e rastreamento de unidades móveis. Desejável experiência em desenvolvimento de aplicações para versões 2.2.x e 4.x. Os requisitos dos projetos exigirão conhecimento de:
- Fragments
- SQLite
- Acesso a recursos como GPS, Bluetooth, Câmera
- Comunicação de dados (wi-fi e 3G)
- WebService (SOAP e Rest)
- JSON
- Componente de mapa (Google maps)

Interessados enviar currículo aos cuidados de Clayton

Abs

Diogo

--
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] Re: Trabalhando com Fragments

Pessoal, só complementando a informação que eu havia dado antes nesta thread...

Já adicionei as referências bibliográficas aos slides da minha apresentação (http://www.slideshare.net/suelengc/devfest-2012-esquartejando-sua-activity-com-fragments) e agora tem também o vídeo no youtube: http://www.youtube.com/watch?v=rM7-xjmI3Cw

Abraços,
--



2013/1/3 Ricardo Lecheta <rlecheta@gmail.com>

vc so pode fazer replace em fragments adicionados pela api. ta adicionando eles por xml?

On Jan 2, 2013 10:45 PM, "Guilherme Bernardi" <gui.bernardi09@gmail.com> wrote:
Ricardo obrigado pela atenção.

Então ai que está, anteriormente eu estava utilizando o método Replace ao invés do Add e mesmo assim ocorria o mesmo problema.
Agora mesmo sabendo que já estava dando problema tentei utilizar novamente o Replace e mesmo assim não funcionou.

Tem uma coisa que notei que eu acho que pode ser isto o problema, mas não estou encontrando uma forma de resolver e nem estou encontrando o porque ele está fazendo isso.

Meu layout principal com os Fragments está implementado desta maneira:

    <fragment
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    class="dataplus.app.dataplussmart.CadastroClienteDados"
    android:id="@+id/fragDados" />
<fragment
   android:layout_width="fill_parent"
   android:layout_height="fill_parent"
   class="dataplus.app.dataplussmart.CadastroClienteEntrega"
   android:id="@+id/fragEntrega" />
<fragment
   android:layout_width="fill_parent"
   android:layout_height="fill_parent"
   class="dataplus.app.dataplussmart.CadastroClienteCobranca"
   android:id="@+id/fragCobranca" />

Quando eu passo pelo setContentView(R.layout.activity_cadastro_cliente); ele chama os 3 onCreateView dos respectivos Fragments.

Só que após ele carregar os 3 Fragments. Quando eu termino de criar as Tabs, ele adiciona mais um Fragment repetido.


Então ele deixa 2 CadastroClienteDados. Que é justamente a primeira aba que fica sobrepondo as outras.

Meu TabListener está implementado desta forma:

private class NavTabListener<T extends SherlockFragment> implements ActionBar.TabListener {

   private final SherlockFragmentActivity mActivity;

   private final String mTag;

   private final Class<T> mClass;

private SherlockFragment mFragment;

public NavTabListener(SherlockFragmentActivity activity, String tag, Class<T> clz){

mActivity = activity;

   mTag = tag;

   mClass = clz;

}

   

    public void onTabUnselected(Tab tab, FragmentTransaction ft) {

   

    SherlockFragment preInitializedFragment = (SherlockFragment) mActivity.getSupportFragmentManager().findFragmentByTag(mTag);

   

    if (preInitializedFragment != null){

    ft.detach(preInitializedFragment);

    }else if(mFragment!=null){

    ft.detach(mFragment);

    }

}

public void onTabSelected(Tab tab, FragmentTransaction ft) {

SherlockFragment preInitializedFragment = (SherlockFragment) mActivity.getSupportFragmentManager().findFragmentByTag(mTag);

if(preInitializedFragment == null) {

mFragment = (SherlockFragment) SherlockFragment.instantiate(mActivity, mClass.getName());

ft.replace(android.R.id.content, mFragment, mTag);

} else {

ft.attach(preInitializedFragment);

}

}

public void onTabReselected(Tab tab, FragmentTransaction ft) {}

    }

E cada vez que eu movimento as Tabs, mesmo utilizando o Replace ele adiciona um Fragment ao invés de fazer o replace, mesmo passando apenas na linha do Replace.

Obrigado desde já.

On Wednesday, January 2, 2013 7:56:14 PM UTC-2, rlecheta wrote:

use o metodo replace nao o add.

On Jan 1, 2013 8:07 PM, "Guilherme Bernardi" <gui.ber...@gmail.com> wrote:
Obrigado Ricardo.

É acabei resolvendo dessa maneira, obrigado pela ajuda.
Estou tendo problema com meus tabs agora, estou seguindo um tutorial que encontrei na internet mas não está funcionando legal:

Tenho meu Listener dos Tabs, mas sempre que troco de Tab é como se os 2 últimos sempre estivessem sobrepondo o primeiro:

private class NavTabListener<T extends SherlockFragment> implements ActionBar.TabListener {

   private final SherlockFragmentActivity mActivity;
   private final String mTag;
   private final Class<T> mClass;
   
private Fragment mFragment;
public NavTabListener(SherlockFragmentActivity activity, String tag, Class<T> clz){
mActivity = activity;
   mTag = tag;
   mClass = clz;
}
   
    public void onTabUnselected(Tab tab, FragmentTransaction ft) {
   
    if(mFragment!=null)
    ft.detach(mFragment);

}
public void onTabSelected(Tab tab, FragmentTransaction ft) {
if(mFragment==null){
mFragment = SherlockFragment.instantiate(mActivity, mClass.getName());
ft.add(android.R.id.content, mFragment);
}else {
ft.attach(mFragment);
}
}
public void onTabReselected(Tab tab, FragmentTransaction ft) {}
    }

Antes da maneira que eu havia implementado ao invés de ft.add estava usando ft.replace.
E ao invés de ft.detach, estava utilizando ft.remove.

Mas já tentei dessa maneira também e não funcionou.

On Tuesday, January 1, 2013 7:46:48 PM UTC-2, rlecheta wrote:
Guilherme

coloca o layout_width e layout_height na tag <fragment, igual vc faz com qualquer outra view

2013/1/1 Guilherme Bernardi <gui.ber...@gmail.com>
layout_width



--
Ricardo Lecheta

--
 
 

--
 
 

--
 
 

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

Relaxa cara! Não quis dar a entender que eu me stressei com seu e-mail! :)

Mas com certeza, uma ótima oportunidade pra quem puder! 

--
Atenciosamente,

Lucas Xavier


Em 31 de janeiro de 2013 17:53, André Luiz R. Silva <macolinkalkin@gmail.com> escreveu:
Oi Lucas,

Em nenhum momento eu disse que é fácil. Foi como eu falei: se você quer realmente ir no evento você pode correr atrás de passagem e hospedagem com meses de antecedência. O que diminui e muito o custo final.

Se você realmente não pode sair, foi como eu falei infelizmente não da para vir.

Já fui em vários eventos fora de SP inclusive, em que eu parcelei a passagem em 10x no cartão e o hotel em 10x também (ala Casas Bahia).

E esses eventos me abriram diversas oportunidades. Nunca me arrependi do investimento feito.

Se você realmente não pode vir, é uma pena. Mas se realmente tem chance, da uma corrida atrás que no final você vai ver que vai valer muito a pena.

2013/1/31 Oscar Marques <oscarbm@gmail.com>
Sim.
Eu devo arrumar ingresso pro evento logo eu posso ajudar mais no combustivel.
Senao, eu devo ir de 1001 mesmo se nao rolar.
Dependendo da minha agenda, quase 100% certo ir.


Em 31 de janeiro de 2013 18:48, Suelen Goularte Carvalho <suelengcarvalho@gmail.com> escreveu:

Bacana sua ideia Oscar. Se o pessoal de outras reuniões se comunicarem podem se planejar e economizar (descontos por ter várias pessoas, ir no mesmo carro e rachar combustível, pedágios, etc) bastante na viagem ;-)

Abraços,
--



2013/1/31 Oscar Marques <oscarbm@gmail.com>
Eu devo sair do Rio e ir pra la, alguem nessa afim comigo?


Em 31 de janeiro de 2013 18:44, André Luiz R. Silva <macolinkalkin@gmail.com> escreveu:

Bom que você tocou no assunto.

Por que a maioria dos eventos são em SP? RJ? Tudo isso uma questão de logística. SP tem muitos locais para evento, hotéis, vôos para o Brasil inteiro de diversas cia áreas. 

Volto a repetir, se você se programar certinho, você conseguir vir para o evento tranquilamente. Só não vai vir, quem não quer ou realmente não pode.

On Thu, Jan 31, 2013 at 6:39 PM, Diogo Henrique <diogjp10@gmail.com> wrote:
A maioria das pessoas desse grupo são de São Paulo =/ e os eventos também são de grande maioria de São Paulo. =/

Diogo Henrique
Rede Sociais: 






Em 31 de janeiro de 2013 17:30, André Luiz R. Silva <macolinkalkin@gmail.com> escreveu:

O evento é justamente em Abril para dar tempo de pessoas de outros estados consigam juntar a $$$ para comprar a passagem e pagar a hospedagem =)


On Thu, Jan 31, 2013 at 6:24 PM, Suelen Goularte Carvalho <suelengcarvalho@gmail.com> wrote:
Lucas, vem pra SP e está resolvido rs... 

Abraços,
--



On Thu, Jan 31, 2013 at 5:47 PM, Lucas Xavier <lucasxas@gmail.com> wrote:
Massa! Pena que tô em Recife! :(

--
Atenciosamente,

Lucas Xavier


2013/1/31 Diogo Henrique <diogjp10@gmail.com>
Abriu aqui... vai ter WebCast ?

Diogo Henrique
Rede Sociais: 






2013/1/31 Marcelo Henrique <marcelohd02@gmail.com>
Vai ter camisa não ? Andre ?


2013/1/31 Marcelo Henrique <marcelohd02@gmail.com>
Abre sim .


2013/1/31 Diogo Henrique <diogjp10@gmail.com>
O link aqui não abre.

Diogo Henrique
Rede Sociais: 






2013/1/31 André Luiz R. Silva <macolinkalkin@gmail.com>

http://www.mobileconf.com.br

--
Atenciosamente,

André Luiz R. Silva
@andreronsilva

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



--
                                              - Marcelo Henrique -
  "Se não puder se destacar pelo talento, vença pelo esforço." (Dave Weinbaum)



--
                                              - Marcelo Henrique -
  "Se não puder se destacar pelo talento, vença pelo esforço." (Dave Weinbaum)

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



--
Atenciosamente,

André Luiz R. Silva
@andreronsilva

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



--
Atenciosamente,

André Luiz R. Silva
@andreronsilva

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



--
Oscar Marques
oscarbm@gmail.com
http://www.dunkelheit.com.br
@f117usbr
+55 21 9293-9343

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



--
Atenciosamente,

André Luiz R. Silva
@andreronsilva

--
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] Framework Jogo

Eu desenvolvi esse game usando Unity3D

O complicado do unity3D é que ele é pesado para um celular basico, por exemplo, se esse game tivesse sido desenvolvido nativamente poderia ter dado mais opções de celulares...
Mas o unity3d é muito bom na parte de desenvolvimento, muito tranqüilo..

Posso dar uma ajuda se optar pelo unity3D.... 


Em 31 de janeiro de 2013 16:33, Diego Lopes Marques da Silva <diego.lopes@dce.ufpb.br> escreveu:
Obg Diogo.
Se você ou alguém conhecer pessoas que tenham tablets e estejam no ensino médio, poderia pedir por favor para elas baixarem o jogo e avaliarem através do formulário? Vai servir bastante para o meu TCC.

Obrigado mais uma vez

Em 31 de janeiro de 2013 15:10, Diogo Henrique <diogjp10@gmail.com> escreveu:

Está muito bom Diego, muito bom mesmo.

Diogo Henrique
Rede Sociais: 






Em 31 de janeiro de 2013 14:59, Diego Lopes Marques da Silva <diego.lopes@dce.ufpb.br> escreveu:

Também recomendo a andEngine.
Estou utilizando para o projeto do meu TCC e estou gostando bastante.
Inclusive, quem puder baixar, testar e avaliar agradeço bastante.
Link para jogo: [goo.gl/gJzwx]
Link para questionário [goo.gl/pBLoz].Agradeço

Agradeço a todos e obg.


Em 31 de janeiro de 2013 10:19, speeder <orspeeder@gmail.com> escreveu:

Marmalade não é específico para uma ou duas plataformas...

No site da empresa que fez tem eles usando Marmalade para fazer jogos de Zeebo, Ngage, celular tijolo, PS3, NDS...


2013/1/31 Diogo Henrique <diogjp10@gmail.com>
Unity é Top o resto e especifico para uma ou duas plataformas.

Diogo Henrique
Rede Sociais: 






Em 30 de janeiro de 2013 23:11, João Paulo (littleoak) <whilelive@gmail.com> escreveu:

Pelo que li o Unity3d é overpowered demais :P.

Em 30 de janeiro de 2013 23:52, speeder <orspeeder@gmail.com> escreveu:

Dei uma olhada no andengine :) mas é só Android, no meu caso não rola.

On Jan 30, 2013 5:14 PM, "Rodrigo Dias" <rbdias@gmail.com> wrote:
Se você tá focando em Android e quer uma engine prática para jogo simples em 2D recomendo a AndEngine.
Pra mim as vantagens principais são a eficiência e a alta compatibilidade. E a desvantagem maior é a falta de documentação adequada. Mas isso a gente supera (até pq o código é aberto) e sempre vale a pena contribuir postando no forum oficial.

Abs,


2013/1/30 Cristiano Douglas <cristianoprogrammer@gmail.com>
O Speeder eu já conheço. custa abrir os horizontes.
Mas é gente fina. 

Abraço.

Em 30 de janeiro de 2013 16:38, Pedro Subutzki <Pepeu> <falecompepeu@gmail.com> escreveu:

Speeder,
Se você trabalha com jogos e não conhece a AndEngine é melhor dar uma atualizada! :)
Não que você precise usa-la mas é sempre bom se manter atualizado com o que está rolando em paralelo ao seu negócio.


Em 30 de janeiro de 2013 15:20, speeder <orspeeder@gmail.com> escreveu:
andengine é o mais conhecido que nunca ouvi falar (e tenho uma empresa de jogos de android).

Então, existe pago:

Marmalade (C++, meio baixo nível, caro).
Corona (lua, muito legal de usar e tal).
Unity (várias linguagens, editor grande e complexo, focado no 3D).

Grátis:

Moai (lua, chatíssimo de compilar o interpretador a primeira vez... código aberto)
Gideros (lua, não testei)
Cocos2D-x (C++, nunca usei, usei  o Cocos2D original e era horrível e não documentado, mas faz uns anos já).


mais alguns, mais agora não lembro :/


2013/1/30 thiagolopes silva <thiagoolsilva@gmail.com>

Usa andengine e o mais conhecido.

Abracos!

Em 30/01/2013 14:06, "Fabio Ebner" <fabioebner@gmail.com> escreveu:

Amigos, tenho uma duvida, qual um bom framework para fazer jogo em android? nada mto elaborado, quero comecar com um jogo de carta, tipo turno. .. e outra coisa, alguem sabe se e possivel eu via WIFI (sem roteador) conectar um celular no outro para troca de informacoes? tipo faco um celular como aquele thetering(o mesmo que compartilha 3g) e os outros conectam nele..


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.
 
 

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



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

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



--
Cristiano Douglas
Mobile Programmer

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



--
--------------------------------
"O que vale é a intensidade do fôlego que se toma para grandes realizações!"
Thanks God.
@little_oak
http://www.appunix.com.br

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

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

2 Mil ? isso tudo man? 


Em 31 de janeiro de 2013 19:01, Diogo Henrique <diogjp10@gmail.com> escreveu:
E inviável gastar mais de 2 mil reais pra ir pro evento na minha opinião, mas evento é muito bom. Se eu tivesse alguma familiar e tal que ajudasse na viagem seria ótimo  mas.... não tenho como fazer esse investimento. 

Diogo Henrique
Rede Sociais: 






Em 31 de janeiro de 2013 17:55, Marcelo Henrique <marcelohd02@gmail.com> escreveu:

Sou de MG e Vou Pra SP ate de busao se for mais barat6,


Em 31 de janeiro de 2013 18:45, Oscar Marques <oscarbm@gmail.com> escreveu:

Eu devo sair do Rio e ir pra la, alguem nessa afim comigo?


Em 31 de janeiro de 2013 18:44, André Luiz R. Silva <macolinkalkin@gmail.com> escreveu:

Bom que você tocou no assunto.

Por que a maioria dos eventos são em SP? RJ? Tudo isso uma questão de logística. SP tem muitos locais para evento, hotéis, vôos para o Brasil inteiro de diversas cia áreas. 

Volto a repetir, se você se programar certinho, você conseguir vir para o evento tranquilamente. Só não vai vir, quem não quer ou realmente não pode.

On Thu, Jan 31, 2013 at 6:39 PM, Diogo Henrique <diogjp10@gmail.com> wrote:
A maioria das pessoas desse grupo são de São Paulo =/ e os eventos também são de grande maioria de São Paulo. =/

Diogo Henrique
Rede Sociais: 






Em 31 de janeiro de 2013 17:30, André Luiz R. Silva <macolinkalkin@gmail.com> escreveu:

O evento é justamente em Abril para dar tempo de pessoas de outros estados consigam juntar a $$$ para comprar a passagem e pagar a hospedagem =)


On Thu, Jan 31, 2013 at 6:24 PM, Suelen Goularte Carvalho <suelengcarvalho@gmail.com> wrote:
Lucas, vem pra SP e está resolvido rs... 

Abraços,
--



On Thu, Jan 31, 2013 at 5:47 PM, Lucas Xavier <lucasxas@gmail.com> wrote:
Massa! Pena que tô em Recife! :(

--
Atenciosamente,

Lucas Xavier


2013/1/31 Diogo Henrique <diogjp10@gmail.com>
Abriu aqui... vai ter WebCast ?

Diogo Henrique
Rede Sociais: 






2013/1/31 Marcelo Henrique <marcelohd02@gmail.com>
Vai ter camisa não ? Andre ?


2013/1/31 Marcelo Henrique <marcelohd02@gmail.com>
Abre sim .


2013/1/31 Diogo Henrique <diogjp10@gmail.com>
O link aqui não abre.

Diogo Henrique
Rede Sociais: 






2013/1/31 André Luiz R. Silva <macolinkalkin@gmail.com>

http://www.mobileconf.com.br

--
Atenciosamente,

André Luiz R. Silva
@andreronsilva

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



--
                                              - Marcelo Henrique -
  "Se não puder se destacar pelo talento, vença pelo esforço." (Dave Weinbaum)



--
                                              - Marcelo Henrique -
  "Se não puder se destacar pelo talento, vença pelo esforço." (Dave Weinbaum)

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



--
Atenciosamente,

André Luiz R. Silva
@andreronsilva

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



--
Atenciosamente,

André Luiz R. Silva
@andreronsilva

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



--
Oscar Marques
oscarbm@gmail.com
http://www.dunkelheit.com.br
@f117usbr
+55 21 9293-9343

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

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



--
                                              - Marcelo Henrique -
  "Se não puder se destacar pelo talento, vença pelo esforço." (Dave Weinbaum)

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

E inviável gastar mais de 2 mil reais pra ir pro evento na minha opinião, mas evento é muito bom. Se eu tivesse alguma familiar e tal que ajudasse na viagem seria ótimo  mas.... não tenho como fazer esse investimento. 

Diogo Henrique
(83)87344178
Rede Sociais: 






Em 31 de janeiro de 2013 17:55, Marcelo Henrique <marcelohd02@gmail.com> escreveu:
Sou de MG e Vou Pra SP ate de busao se for mais barat6,


Em 31 de janeiro de 2013 18:45, Oscar Marques <oscarbm@gmail.com> escreveu:

Eu devo sair do Rio e ir pra la, alguem nessa afim comigo?


Em 31 de janeiro de 2013 18:44, André Luiz R. Silva <macolinkalkin@gmail.com> escreveu:

Bom que você tocou no assunto.

Por que a maioria dos eventos são em SP? RJ? Tudo isso uma questão de logística. SP tem muitos locais para evento, hotéis, vôos para o Brasil inteiro de diversas cia áreas. 

Volto a repetir, se você se programar certinho, você conseguir vir para o evento tranquilamente. Só não vai vir, quem não quer ou realmente não pode.

On Thu, Jan 31, 2013 at 6:39 PM, Diogo Henrique <diogjp10@gmail.com> wrote:
A maioria das pessoas desse grupo são de São Paulo =/ e os eventos também são de grande maioria de São Paulo. =/

Diogo Henrique
Rede Sociais: 






Em 31 de janeiro de 2013 17:30, André Luiz R. Silva <macolinkalkin@gmail.com> escreveu:

O evento é justamente em Abril para dar tempo de pessoas de outros estados consigam juntar a $$$ para comprar a passagem e pagar a hospedagem =)


On Thu, Jan 31, 2013 at 6:24 PM, Suelen Goularte Carvalho <suelengcarvalho@gmail.com> wrote:
Lucas, vem pra SP e está resolvido rs... 

Abraços,
--



On Thu, Jan 31, 2013 at 5:47 PM, Lucas Xavier <lucasxas@gmail.com> wrote:
Massa! Pena que tô em Recife! :(

--
Atenciosamente,

Lucas Xavier


2013/1/31 Diogo Henrique <diogjp10@gmail.com>
Abriu aqui... vai ter WebCast ?

Diogo Henrique
Rede Sociais: 






2013/1/31 Marcelo Henrique <marcelohd02@gmail.com>
Vai ter camisa não ? Andre ?


2013/1/31 Marcelo Henrique <marcelohd02@gmail.com>
Abre sim .


2013/1/31 Diogo Henrique <diogjp10@gmail.com>
O link aqui não abre.

Diogo Henrique
Rede Sociais: 






2013/1/31 André Luiz R. Silva <macolinkalkin@gmail.com>

http://www.mobileconf.com.br

--
Atenciosamente,

André Luiz R. Silva
@andreronsilva

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



--
                                              - Marcelo Henrique -
  "Se não puder se destacar pelo talento, vença pelo esforço." (Dave Weinbaum)



--
                                              - Marcelo Henrique -
  "Se não puder se destacar pelo talento, vença pelo esforço." (Dave Weinbaum)

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



--
Atenciosamente,

André Luiz R. Silva
@andreronsilva

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



--
Atenciosamente,

André Luiz R. Silva
@andreronsilva

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



--
Oscar Marques
oscarbm@gmail.com
http://www.dunkelheit.com.br
@f117usbr
+55 21 9293-9343

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

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

Sou de MG e Vou Pra SP ate de busao se for mais barat6,


Em 31 de janeiro de 2013 18:45, Oscar Marques <oscarbm@gmail.com> escreveu:
Eu devo sair do Rio e ir pra la, alguem nessa afim comigo?


Em 31 de janeiro de 2013 18:44, André Luiz R. Silva <macolinkalkin@gmail.com> escreveu:

Bom que você tocou no assunto.

Por que a maioria dos eventos são em SP? RJ? Tudo isso uma questão de logística. SP tem muitos locais para evento, hotéis, vôos para o Brasil inteiro de diversas cia áreas. 

Volto a repetir, se você se programar certinho, você conseguir vir para o evento tranquilamente. Só não vai vir, quem não quer ou realmente não pode.

On Thu, Jan 31, 2013 at 6:39 PM, Diogo Henrique <diogjp10@gmail.com> wrote:
A maioria das pessoas desse grupo são de São Paulo =/ e os eventos também são de grande maioria de São Paulo. =/

Diogo Henrique
Rede Sociais: 






Em 31 de janeiro de 2013 17:30, André Luiz R. Silva <macolinkalkin@gmail.com> escreveu:

O evento é justamente em Abril para dar tempo de pessoas de outros estados consigam juntar a $$$ para comprar a passagem e pagar a hospedagem =)


On Thu, Jan 31, 2013 at 6:24 PM, Suelen Goularte Carvalho <suelengcarvalho@gmail.com> wrote:
Lucas, vem pra SP e está resolvido rs... 

Abraços,
--



On Thu, Jan 31, 2013 at 5:47 PM, Lucas Xavier <lucasxas@gmail.com> wrote:
Massa! Pena que tô em Recife! :(

--
Atenciosamente,

Lucas Xavier


2013/1/31 Diogo Henrique <diogjp10@gmail.com>
Abriu aqui... vai ter WebCast ?

Diogo Henrique
Rede Sociais: 






2013/1/31 Marcelo Henrique <marcelohd02@gmail.com>
Vai ter camisa não ? Andre ?


2013/1/31 Marcelo Henrique <marcelohd02@gmail.com>
Abre sim .


2013/1/31 Diogo Henrique <diogjp10@gmail.com>
O link aqui não abre.

Diogo Henrique
Rede Sociais: 






2013/1/31 André Luiz R. Silva <macolinkalkin@gmail.com>

http://www.mobileconf.com.br

--
Atenciosamente,

André Luiz R. Silva
@andreronsilva

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



--
                                              - Marcelo Henrique -
  "Se não puder se destacar pelo talento, vença pelo esforço." (Dave Weinbaum)



--
                                              - Marcelo Henrique -
  "Se não puder se destacar pelo talento, vença pelo esforço." (Dave Weinbaum)

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



--
Atenciosamente,

André Luiz R. Silva
@andreronsilva

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



--
Atenciosamente,

André Luiz R. Silva
@andreronsilva

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



--
Oscar Marques
oscarbm@gmail.com
http://www.dunkelheit.com.br
@f117usbr
+55 21 9293-9343

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

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