Android Open Source - MYKey_SoftKeyboard Latin Keyboard View






From Project

Back to project page MYKey_SoftKeyboard.

License

The source code is released under:

Apache License

If you think the Android project MYKey_SoftKeyboard listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright (C) 2008-2009 The Android Open Source Project
 *//from  ww w  .  ja v a  2s .co m
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */


package com.android.mykey;

import android.content.Context;
import android.inputmethodservice.Keyboard;
import android.inputmethodservice.KeyboardView;
import android.util.AttributeSet;
import android.view.inputmethod.InputMethodSubtype;

public class LatinKeyboardView extends KeyboardView {
  
    static final int KEYCODE_OPTIONS = -100;
    private boolean shifted;
    private boolean toggled;
    
    

    public LatinKeyboardView(Context context, AttributeSet attrs) {
        super(context, attrs);
        shifted = false;
        toggled = false;
      }

    public LatinKeyboardView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        shifted = false;
        toggled = false;
    }

    
    
    public boolean getShifted(){
      return shifted;
    }
    
    public boolean getToggled(){
      return toggled;
    }

    
    
    @Override
  public boolean setShifted(boolean inputShift) {
      if(!shifted){
        shifted = true;
        super.setShifted(true);
        
      }
      else if(!toggled){
        toggled = true;
      }
      else if(toggled){
        shifted = false;
        toggled = false;
        super.setShifted(false);
        invalidateAllKeys();
        return false;
      }
      
      invalidateAllKeys();
      return true;
  }
    
    public void initShiftState(){
      shifted = false;
      toggled = false;
      super.setShifted(false);
      
      invalidateAllKeys();
    }
    
    public void initShifted(){
      if(shifted && !toggled){
        super.setShifted(false);
        shifted = false;
      }
      invalidateAllKeys();
    }

  @Override
  public void setKeyboard(Keyboard keyboard) {
    super.setKeyboard(keyboard);
    
  }

  void setSubtypeOnSpaceKey(final InputMethodSubtype subtype) {
        final LatinKeyboard keyboard = (LatinKeyboard)getKeyboard();
        keyboard.setSpaceIcon(getResources().getDrawable(subtype.getIconResId()));
        invalidateAllKeys();
    }

}




Java Source Code List

com.android.mykey.LatinKeyboardView.java
com.android.mykey.LatinKeyboard.java
com.android.mykey.SoftKeyboard.java
ime_preferences.ImePreferencesActivity.java
key_process.Buffer.java
key_process.FinalCombinationInfo.java
key_process.KeyInfo.java
key_process.KeyMap.java
key_process.KeyProcessor.java
korean_automata.CombinationState.java
korean_automata.KoreanAutomata.java
korean_automata.PhonemeCategoryConverter.java
korean_automata.Proc1.java
korean_automata.Proc2.java
korean_automata.Proc3.java
korean_automata.Proc4.java
korean_automata.StArea.java
korean_automata.StEmpty.java
korean_automata.StError.java
korean_automata.StFirstArea.java
korean_automata.StFirstVowelAndFirst.java
korean_automata.StFirstVowel.java
korean_automata.StFirst.java
korean_automata.StMultiFinal.java
korean_automata.StSingleFinalAndFirst.java
korean_automata.StSingleFinal.java
korean_automata.StVowel.java
korean_automata.VerifyComb.java
string_Key.StringKeyHandler.java
string_Key.StringKeyListAdapter.java
string_Key.StringKeyModifyActivity.java