[android-developers] Re: Keyboard, detect ALT Locked

2009-11-05 Thread vovkab
Mark are you sure?
So what this state for?
http://developer.android.com/intl/de/reference/android/text/method/MetaKeyKeyListener.html#META_ALT_LOCKED

And how should i get to know that editable right now in LOCKED STATE?
If it locked and i can't get it state i will send to user alphabet
symbols instead special symbols. And this will be wrong.

On 3 ноя, 20:41, Mark Murphy mmur...@commonsware.com wrote:
 vovkab wrote:
  Any examples on how to detect locked state (shift or alt)?

 You did not read Ms. Hackborn's response. I'll reprint the relevant
 passage here:

  Again, there is no lock state in general

 --
 Mark Murphy (a Commons 
 Guy)http://commonsware.com|http://twitter.com/commonsguy

 Android Development Wiki:http://wiki.andmob.org

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Re: Keyboard, detect ALT Locked

2009-11-05 Thread Dianne Hackborn
Like I said, this state is maintained as part of the text being edited.  You
can look at the text in a text view to see if any of these states are set,
using this API.  That is the ONLY place this state is kept.

On Thu, Nov 5, 2009 at 4:52 PM, vovkab vov...@gmail.com wrote:

 Mark are you sure?
 So what this state for?

 http://developer.android.com/intl/de/reference/android/text/method/MetaKeyKeyListener.html#META_ALT_LOCKED

 And how should i get to know that editable right now in LOCKED STATE?
 If it locked and i can't get it state i will send to user alphabet
 symbols instead special symbols. And this will be wrong.

 On 3 ноя, 20:41, Mark Murphy mmur...@commonsware.com wrote:
  vovkab wrote:
   Any examples on how to detect locked state (shift or alt)?
 
  You did not read Ms. Hackborn's response. I'll reprint the relevant
  passage here:
 
   Again, there is no lock state in general
 
  --
  Mark Murphy (a Commons Guy)http://commonsware.com|
 http://twitter.com/commonsguy
 
  Android Development Wiki:http://wiki.andmob.org

 --
 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+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en




-- 
Dianne Hackborn
Android framework engineer
hack...@android.com

Note: please don't send private questions to me, as I don't have time to
provide private support, and so won't reply to such e-mails.  All such
questions should be posted on public forums, where I and others can see and
answer them.

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Re: Keyboard, detect ALT Locked

2009-11-03 Thread vovkab
Any examples on how to detect locked state (shift or alt)?

On 30 окт, 18:09, vovkab vov...@gmail.com wrote:
 Any examples on how to detect locked state (shift or alt)?

 On Oct 29, 10:04 pm, Dianne Hackborn hack...@android.com wrote:



  Again, there is no lock state in general.  The text receiving input
  maintains its own internal state for some things like this; if you want to
  get at that state, you can do so with the text APIs.  
  See:http://developer.android.com/reference/android/text/method/MetaKeyKey...

  http://developer.android.com/reference/android/text/method/MetaKeyKey...Other
  than that, no lock state exists.

  2009/10/29 vovkab vov...@gmail.com
   Need help.

   On 27 окт, 15:17, vovkab vov...@gmail.com wrote:
So, how to get it?

On 19 окт, 05:57, Dianne Hackborn hack...@android.com wrote:

 The concept of the alt lock state only exists inside of the text
   object, as
 it deals with editing being done on it.

 On Sun, Oct 18, 2009 at 6:57 AM, iron ironph...@gmail.com wrote:

  Any ideas?

 --
 Dianne Hackborn
 Android framework engineer
 hack...@android.com

 Note: please don't send private questions to me, as I don't have time
   to
 provide private support, and so won't reply to such e-mails.  All such
 questions should be posted on public forums, where I and others can 
 see
   and
 answer them.

  --
  Dianne Hackborn
  Android framework engineer
  hack...@android.com

  Note: please don't send private questions to me, as I don't have time to
  provide private support, and so won't reply to such e-mails.  All such
  questions should be posted on public forums, where I and others can see and
  answer them.

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Re: Keyboard, detect ALT Locked

2009-11-03 Thread Mark Murphy
vovkab wrote:
 Any examples on how to detect locked state (shift or alt)?

You did not read Ms. Hackborn's response. I'll reprint the relevant
passage here:

 Again, there is no lock state in general

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com | http://twitter.com/commonsguy

Android Development Wiki: http://wiki.andmob.org

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Keyboard, detect ALT Locked

2009-10-30 Thread vovkab

Any examples on how to detect locked state (shift or alt)?

On Oct 29, 10:04 pm, Dianne Hackborn hack...@android.com wrote:
 Again, there is no lock state in general.  The text receiving input
 maintains its own internal state for some things like this; if you want to
 get at that state, you can do so with the text APIs.  
 See:http://developer.android.com/reference/android/text/method/MetaKeyKey...

 http://developer.android.com/reference/android/text/method/MetaKeyKey...Other
 than that, no lock state exists.

 2009/10/29 vovkab vov...@gmail.com

  Need help.

  On 27 окт, 15:17, vovkab vov...@gmail.com wrote:
   So, how to get it?

   On 19 окт, 05:57, Dianne Hackborn hack...@android.com wrote:

The concept of the alt lock state only exists inside of the text
  object, as
it deals with editing being done on it.

On Sun, Oct 18, 2009 at 6:57 AM, iron ironph...@gmail.com wrote:

 Any ideas?

--
Dianne Hackborn
Android framework engineer
hack...@android.com

Note: please don't send private questions to me, as I don't have time
  to
provide private support, and so won't reply to such e-mails.  All such
questions should be posted on public forums, where I and others can see
  and
answer them.

 --
 Dianne Hackborn
 Android framework engineer
 hack...@android.com

 Note: please don't send private questions to me, as I don't have time to
 provide private support, and so won't reply to such e-mails.  All such
 questions should be posted on public forums, where I and others can see and
 answer them.
--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Keyboard, detect ALT Locked

2009-10-29 Thread vovkab

Need help.

On 27 окт, 15:17, vovkab vov...@gmail.com wrote:
 So, how to get it?

 On 19 окт, 05:57, Dianne Hackborn hack...@android.com wrote:



  The concept of the alt lock state only exists inside of the text object, as
  it deals with editing being done on it.

  On Sun, Oct 18, 2009 at 6:57 AM, iron ironph...@gmail.com wrote:

   Any ideas?

  --
  Dianne Hackborn
  Android framework engineer
  hack...@android.com

  Note: please don't send private questions to me, as I don't have time to
  provide private support, and so won't reply to such e-mails.  All such
  questions should be posted on public forums, where I and others can see and
  answer them.
--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Keyboard, detect ALT Locked

2009-10-29 Thread Dianne Hackborn
Again, there is no lock state in general.  The text receiving input
maintains its own internal state for some things like this; if you want to
get at that state, you can do so with the text APIs.  See:
http://developer.android.com/reference/android/text/method/MetaKeyKeyListener.html

http://developer.android.com/reference/android/text/method/MetaKeyKeyListener.htmlOther
than that, no lock state exists.

2009/10/29 vovkab vov...@gmail.com


 Need help.

 On 27 окт, 15:17, vovkab vov...@gmail.com wrote:
  So, how to get it?
 
  On 19 окт, 05:57, Dianne Hackborn hack...@android.com wrote:
 
 
 
   The concept of the alt lock state only exists inside of the text
 object, as
   it deals with editing being done on it.
 
   On Sun, Oct 18, 2009 at 6:57 AM, iron ironph...@gmail.com wrote:
 
Any ideas?
 
   --
   Dianne Hackborn
   Android framework engineer
   hack...@android.com
 
   Note: please don't send private questions to me, as I don't have time
 to
   provide private support, and so won't reply to such e-mails.  All such
   questions should be posted on public forums, where I and others can see
 and
   answer them.
 



-- 
Dianne Hackborn
Android framework engineer
hack...@android.com

Note: please don't send private questions to me, as I don't have time to
provide private support, and so won't reply to such e-mails.  All such
questions should be posted on public forums, where I and others can see and
answer them.

--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Keyboard, detect ALT Locked

2009-10-27 Thread vovkab

So, how to get it?

On 19 окт, 05:57, Dianne Hackborn hack...@android.com wrote:
 The concept of the alt lock state only exists inside of the text object, as
 it deals with editing being done on it.

 On Sun, Oct 18, 2009 at 6:57 AM, iron ironph...@gmail.com wrote:

  Any ideas?

 --
 Dianne Hackborn
 Android framework engineer
 hack...@android.com

 Note: please don't send private questions to me, as I don't have time to
 provide private support, and so won't reply to such e-mails.  All such
 questions should be posted on public forums, where I and others can see and
 answer them.
--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Keyboard, detect ALT Locked

2009-10-18 Thread iron

Any ideas?

--~--~-~--~~~---~--~~
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---