You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ya...@googlegroups.com
Hello,
I've been trying to open the code of Yaaic I've downloaded from Github and to compile it myself. Although nearly everything works and there's no error in Eclipse, there's one big issue: the keyboard doesn't open when I click on the text field when I'm inside a chat. However, when I download the app from the Play Store, the keyboard works. I haven't edited anything in the source code.
Can anybody help me with this problem?
cicci...@gmail.com
unread,
Sep 22, 2013, 10:20:08 PM9/22/13
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ya...@googlegroups.com, yannick....@gmail.com
same problem here. added and onclick event to open the keyboard.
EditText input = (EditText) findViewById(R.id.input); input.setOnKeyListener(inputKeyListener); // keyboard does not showup automatically input.setOnClickListener(new EditText.OnClickListener() { public void onClick(View v) { openSoftKeyboard(v); // perform action } }); pager = (ViewPager) findViewById(R.id.pager);