Re: [android-developers] Keyboard

2016-05-17 Thread sardar khan
did you find any resourse ..?? i want to build the same app thanks On Tue, May 17, 2016 at 7:50 PM, 'Carina Huellen' via Android Developers < android-developers@googlegroups.com> wrote: > hey, > > I'm trying to build an App with Android Studio and I need some help > because I don't know how to

[android-developers] Keyboard

2016-05-17 Thread 'Carina Huellen' via Android Developers
hey, I'm trying to build an App with Android Studio and I need some help because I don't know how to access to the google keyboard. I want to change the keyboard by myself. I am very great full for your help -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] keyboard event to start

2012-09-10 Thread TreKing
]On Fri, Sep 7, 2012 at 1:13 PM, andro1indico andro1ind...@gmail.comwrote: how I can intercept the keyboard event when this starts, What is this? this will need to bring up a modal window for writing there Android does not do modal windows. and also that in some cases it will not rise

[android-developers] keyboard event to start

2012-09-09 Thread andro1indico
I have a question how I can intercept the keyboard event when this starts, this will need to bring up a modal window for writing there and also that in some cases it will not rise Thanks for your help and waiting your answer, Pura Vida -- You received this message because you are subscribed to

[android-developers] Keyboard listener should be activated after a count of input?

2012-08-16 Thread User1234
Hi all, I want to set an listener in an activity, which only execute the code when all the 6 or 8 digits is typed in the editText field. I can use an keyboard listener, but this will be activated each time the user type in a single character. I want something more intelligent :) that only

[android-developers] Keyboard layout for Khmer (Cambodia language)

2012-08-02 Thread Petit
Dear Developers, I am currently developing a Keyboard layout for Khmer. The current keyboard layout for Khmer is not rendering well. And the OS is not displaying the Khmer characters. I am very much appreciated if you can point me out about the concepts and the process to get a font of a

[android-developers] Keyboard question

2012-07-31 Thread yakobom
Hi, I'm building a custom keyboard, and I need to be able to move it around - so it won't necessarily stick to the bottom and sides of the screen. Can anyone please direct me how to achieve this? Thanks, yakobom -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] keyboard

2012-05-03 Thread Ibrahim Sada
wts the new letter?if yua interested then share with us On 3 May 2012 02:19, jadranko bodiroga jadrankobodiroga1...@gmail.comwrote: beleve or not, in my country our govenment invent new letters...Some politicians stuff...boring..But i would like to make these letters on new custom

Re: [android-developers] keyboard

2012-05-03 Thread jadranko bodiroga
I can not type...is it metter how letter looks like? Is it even posible to make keyboard on mine custom language? On May 3, 2012 8:36 AM, Ibrahim Sada ibrahim.in...@gmail.com wrote: wts the new letter?if yua interested then share with us On 3 May 2012 02:19, jadranko bodiroga

Re: [android-developers] keyboard

2012-05-03 Thread Mark Murphy
On Thu, May 3, 2012 at 6:33 PM, jadranko bodiroga jadrankobodiroga1...@gmail.com wrote: I can not type...is it metter how letter looks like? Is it even posible to make keyboard on mine custom language? Your custom language will not be able to be rendered unless it happens to already be

[android-developers] keyboard

2012-05-02 Thread baturanija1
hey people, i have a question.I would like to make my own keyboard,with some new letters,so i do not know is it possible to implemet into app.Any good links on that idea, any experiencesthanks for sharing :) -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] keyboard

2012-05-02 Thread Justin Anderson
What do you mean by new letters? Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Wed, May 2, 2012 at 2:42 PM, baturanija1 jadrankobodiroga1...@gmail.comwrote: hey people, i have a question.I would like to make my own keyboard,with some new letters,so

Re: [android-developers] keyboard

2012-05-02 Thread jadranko bodiroga
beleve or not, in my country our govenment invent new letters...Some politicians stuff...boring..But i would like to make these letters on new custom keyboard... -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

Re: [android-developers] keyboard

2012-05-02 Thread Justin Anderson
Yikes... Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Wed, May 2, 2012 at 2:49 PM, jadranko bodiroga jadrankobodiroga1...@gmail.com wrote: beleve or not, in my country our govenment invent new letters...Some politicians stuff...boring..But i

Re: [android-developers] keyboard

2012-05-02 Thread TreKing
On Wed, May 2, 2012 at 3:42 PM, baturanija1 jadrankobodiroga1...@gmail.comwrote: hey people, i have a question.I would like to make my own keyboard,with some new letters,so i do not know is it possible to implemet into app.Any good links on that idea, any experiencesthanks for sharing :)

Re: [android-developers] keyboard dismissing issue

2012-02-16 Thread vani reddy
Hey I have already given this. On Thu, Feb 16, 2012 at 12:42 PM, Ratheesh Valamchuzhy android...@gmail.com wrote: add android:windowSoftInputMode=stateHidden to the activity tag in manifest file -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] keyboard dismissing issue

2012-02-16 Thread Ratheesh Valamchuzhy
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE); imm.hideSoftInputFromWindow(uicontrol object.getWindowToken(), 0); uicontrol object edittext, listview which causes to show soft keyboard -- You received this message because you are subscribed to the

Re: [android-developers] keyboard dismissing issue

2012-02-16 Thread Tom Wang
I mean when i use requestWindowFeature(Window.FEATURE_NO_TITLE) this method,the actionbar is disappear:( i think android:windowSoftInputMode=stateHidden this parameter is not solution for this questition. 2012/2/16 Ratheesh Valamchuzhy android...@gmail.com add

Re: [android-developers] keyboard dismissing issue

2012-02-16 Thread Tom Wang
Dear, I add this parameter in manifest but it 's still can't work. By the way,i develope on ICS 4.0.3.Thank you. 2012/2/16 Ratheesh Valamchuzhy android...@gmail.com add android:windowSoftInputMode=stateHidden to the activity tag in manifest file -- You received this message because you

[android-developers] keyboard dismissing issue

2012-02-15 Thread vani reddy
HI friends, i have an edittext below which is the listview. after searching in the edittext ,when i click on the listview item it switches to next activity but the keyboard is not dismissed. how to acheive this. In the getView() method i have given convertView.setOnClickListener(new

Re: [android-developers] keyboard dismissing issue

2012-02-15 Thread tushar sahni
Hi Has anyone worked on push notifications in android Regards Tushar Sahni -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send

Re: [android-developers] keyboard dismissing issue

2012-02-15 Thread Ratheesh Valamchuzhy
add android:windowSoftInputMode=stateHidden to the activity tag in manifest file -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send

[android-developers] keyboard pushing the complete screen..?

2012-02-13 Thread Abhilash baddam
Hi, I am having a layout which contains Relativelayout as root layout. the layout structure is like this... RelativeLayout Edittext/ ListView/ ImageView android:layout_alignParentBottom=true/ /RelativeLayout In that layout i am having imageview which is android:layout_alignParentBottom=true.

[android-developers] Keyboard, KeyboardView class

2011-11-14 Thread smile.heegon
I wonder what the Keyboard class and KeyboardView class describes. I looked up some example with that classes, but they are expressed qwerty structure : arranged rows of characters on square layout. I couldn't find out support-range of that APIs. I consider a kind of keyboard, has not square

[android-developers] keyboard touch even is ALWAYS intercepted, even when it shouldn't be.

2011-09-09 Thread Saied
Hello, I have created an alternative keyboard (MessagEase, on the market) that does NOT use the entire lower part of the screen. It can be configured to use only a small, squarish area on the lower left, right or center, leaving the unused screen area visible and hopefully useful for the user.

Re: [android-developers] Keyboard Show/Hide Notification

2011-06-27 Thread harish rudra
onconfigurationchanged On Thu, Jun 23, 2011 at 10:41 AM, Prasannaa prasanna...@gmail.com wrote: Hi, I would like to know when the keyboard appears/disappears.I found out that (by searching) that there are no direct api's for this and onGlobolLayoutListener's onGlobalLayout is generally

[android-developers] Keyboard Show/Hide Notification

2011-06-22 Thread Prasannaa
Hi, I would like to know when the keyboard appears/disappears.I found out that (by searching) that there are no direct api's for this and onGlobolLayoutListener's onGlobalLayout is generally used to find this.But, the problems I am facing in doing so is 1) On Landscape mode,

[android-developers] Keyboard issue on android 2.3.3

2011-06-22 Thread Ankur Avlani
HI, I upgraded my phone to android 2.3.3. I have an app which opens the keyboard in landscape mode when it starts. After upgrading, i am not seeing the keyboard unless I click on the field. InputMethodManager man = (InputMethodManager)

[android-developers] Keyboard Show/Hide Notification

2011-06-22 Thread Prasannaa
Hi, I would like to know when the keyboard appears/disappears.I found out that (by searching) that there are no direct api's for this and onGlobolLayoutListener's onGlobalLayout is generally used to find this.But, the problems I am facing in doing so is 1) On Landscape mode, onGlobalLayout

[android-developers] keyboard, where are you

2011-05-13 Thread bob
Sometimes in my Webviews, the keyboard doesn't pop up when the user clicks a text field. Anyone know how to fix this? Specifically, this is happening when I switch to a Webview from an OpenGL GLSurfaceView so that the user can tweet about the game they are playing. -- You received this message

[android-developers] keyboard popup

2011-04-29 Thread bob
Is there a way to pop up the onscreen keyboard in an OpenGL app? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] keyboard

2011-04-20 Thread bob
I'm making a video game where the user needs to enter their name on a game screen for a high score. Is there an easy way to make the keyboard pop up on a game screen? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

Re: [android-developers] keyboard

2011-04-20 Thread Marcin Orlowski
On 20 April 2011 21:19, bob b...@coolgroups.com wrote: I'm making a video game where the user needs to enter their name on a game screen for a high score. Is there an easy way to make the keyboard pop up on a game screen? Use standard textedit (maybe with some styling) and you shall be done

[android-developers] Keyboard in Gmail rich text

2011-04-15 Thread Pradeep
Hi, If in Froyo we set browser user agent to desktop and then try to compose a message in gmail.com. Keyboard does not get launched until we move to plain text. Has anyone faced this problem ? What might be the reason ? Regards, Pradeep -- You received this message because you are subscribed

[android-developers] Keyboard layout

2011-02-18 Thread Redz
I am having problems designing a querty keyboard view. My app should launch an activity that creates a full screen keyboard similar to that of a PC. I seem to be having problems design the xml view mostly due to my lack of knowledge of the different layoutouts. I would like to have the keyboard

[android-developers] keyboard - resizing viewgroup, overlaying viewgroups and custom editor view

2010-11-08 Thread SupaGu
im writing a keyboard and there are a number of things i want to do: 1) i want to be able to dyamically resize the the keyboard view. I have a custom view for my keyboard, created by my InputMethodService.onCreateInputView i've tried calling invalidate, requestLayout, forceLayout, on the

Re: [android-developers] Keyboard log for reference

2010-10-22 Thread TreKing
On Tue, Oct 19, 2010 at 10:51 PM, Android Test aandroidt...@gmail.comwrote: Is it possible? Write your own keyboard or modify the firmware to hack the built-in one? - TreKing

[android-developers] Keyboard log for reference

2010-10-21 Thread Android Test
Hi All, I want to write an application that will log down whatever I type using the Android keyboard. The purpose is to have a backup of all the keyboard entries. Is it possible? Regards. -- You received this message because you are subscribed to the Google Groups Android Developers group.

[android-developers] Keyboard layout different languages. Android Tablets Keyboard Layout.

2010-09-20 Thread AlreadyAMember
HI I am trying to find the keyboard layout. However i saw a few posts where resources are mentioned to find QWERTY This is simply not enough for what I am working on. I like to know which english keyboard is present on the device. I suspect that android is not going to give me this option on

[android-developers] Keyboard Navigation

2010-08-03 Thread Princeft
Hi, Normally when one writes a text message appears on clicking the keyboard and touchscreen mode is enable to form the message text. In order to compose the message text using the arrow directions what to do? This is an example. I have to develop an application with Android OS but whose external

[android-developers] Keyboard keys

2010-07-07 Thread Scit
How can I paint my keyboard's keys with different colors like in Samsung keyboard? KeyboardView android:keyBackground provides background for all keys not for one :( -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] keyboard textfield selected color

2010-06-15 Thread authorwjf
Howdy, I am sure there is an easy answer for this but I've yet to find it. Our application requires us to change out a number of the system 9.png images (okay, actually our marketing dept is requiring as I'm fine with the orange). Anyhow, I've been successful in getting most buttons to change by

[android-developers] Keyboard and EditText in landscape

2010-05-26 Thread André
Hello, 1. How do I keep multiple lines in an edittext in landscape view? 2. How can I turn off the softkeyboard only in landscape view? -André -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Keyboard virtualization

2010-04-02 Thread Rafał Grzybowski
Hello there, How to virtualize keyboard. I mean, I need to send keystrokes read from other source. I've read a little about linux input system, wrote some kernel module (input driver) but recently one has explained to me that I won't be able to deploy such kernel module to non-rooted Android cell

Re: [android-developers] keyboard

2010-03-30 Thread emna zeddini
Hello, Do you have any idea about integrating arabic keyboard to android. May be by altering /development/samples/softkeyboard? 2010/3/29 emna zeddini zeddini.e...@gmail.com Of course I am focusing on the android platform. 2010/3/29 Mark Murphy mmur...@commonsware.com emna zeddini wrote:

[android-developers] keyboard

2010-03-29 Thread emna zeddini
Hello everybody, I am interesting in integrating an arabic keyboard to the android system. I proceeded as follows: I have modified the xml and the layout in the package softkeyboard by replacing English letters and their codes by the arabic one.Of cource I created 2 new directories in

Re: [android-developers] keyboard

2010-03-29 Thread Mark Murphy
emna zeddini wrote: Hello everybody, I am interesting in integrating an arabic keyboard to the android system. I proceeded as follows: I have modified the xml and the layout in the package softkeyboard by replacing English letters and their codes by the arabic one.Of cource I created 2 new

Re: [android-developers] keyboard

2010-03-29 Thread emna zeddini
Of course I am focusing on the android platform. 2010/3/29 Mark Murphy mmur...@commonsware.com emna zeddini wrote: Hello everybody, I am interesting in integrating an arabic keyboard to the android system. I proceeded as follows: I have modified the xml and the layout in the package

[android-developers] Keyboard Character Replacement

2010-02-09 Thread Sasikumar.S
Hi, How to replace a keyboard character?.. Ex:- 'Enter' Button should be changed to 'Search' or 'Done' http://betterandroid.files.wordpress.com/2009/05/61.png http://betterandroid.files.wordpress.com/2009/05/61.png http://betterandroid.files.wordpress.com/2009/05/51.png -- Thanks Regards

[android-developers] Keyboard Typing Error

2010-02-09 Thread Sasikumar.S
Hi, I have set my textview as editable. When i try to type in textview with my PC keyboard its working fine. When i tried with Android Keyboard it is showing 02-10 11:34:01.151: ERROR/AndroidRuntime(291): Uncaught handler: thread main exiting due to uncaught exception 02-10 11:34:01.200:

[android-developers] Keyboard-less device support

2009-11-09 Thread GT
Are keyboard-less devices supported? I am developing apps for an Android device that does not have any hardware keys except for a power button and I have been running into hurdles left and right. Not having a keyboard is not a big problem but my lack of hardware Home, Menu, and Back keys is

Re: [android-developers] Keyboard-less device support

2009-11-09 Thread Mark Murphy
GT wrote: Are keyboard-less devices supported? More Android devices lack a keyboard than have them. I am developing apps for an Android device that does not have any hardware keys except for a power button and I have been running into hurdles left and right. Not having a keyboard is not a

[android-developers] Keyboard Backlight (G1) unavailable in Cupcake 1.5

2009-05-11 Thread Devomat
Hello, I need a function like: setKeyboardBacklight(boolean state) to switch off the keyboard backlight of the G1. The Cupcake 1.5 update do not allow permission.HARDWARE_TEST to import this function. This is ok, but now G1 (white) users can't see the keys while daylight. So it would

[android-developers] keyboard layout switching in Android

2009-03-09 Thread zergio
Hi, I like Android platform a lot. However, one the things, IHMO, Android lacks a lot, is an ability to dynamically switch keyboard layouts. It seem this was not even considered in Andonis design. Is the platform only suppose to serve Latin keyboard layout's users?... Right now, the switch can

[android-developers] Keyboard

2008-12-22 Thread zbtjames
I am not a Droid Developer or anything close. Hell, I can barely use my PC. That's why I'm suggesting this here. I have read that the G1 will finally get a touch screen keyboard sometime early next year. However, it will be a QWERTY keyboard. When the touchscreen keyboard comes out, I would love

[android-developers] Keyboard confusion

2008-10-01 Thread Rmac
Since there is no on-screen virtual keyboard built into Android, I am confused about how to plan for text entry. Let's assume there is a screen with a EditText field requiring user input. On the iPhone it works simply by a virtual keyboard popping up when the field has focus. How should an