Android輸入法開發 新手學習指引

①,先作輸入法設置界面
php

public class InputSetsActivity extends Activity {
    @Override    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_input_sets);
    }
}複製代碼

②,設置界面的佈局,文件名:activity_input_sets.xmljava

<TextView android:id="@+id/textView" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="輸入法設置窗口" />
<EditText android:id="@+id/editText" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginStart="8dp" android:layout_marginEnd="8dp" android:ems="10" android:inputType="textMultiLine|textPersonName" android:lines="3" android:text="Name" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/textView" android:gravity="left|top"/>
複製代碼

③,作出彈出輸入法界面處理的類,須要繼承InputMethodService類
android

/** * 參考來自 CSDN: android -> 輸入法開發 (入門) * https://blog.csdn.net/mft8899/article/details/84815696 */
public class MyInputService extends InputMethodService implements View.OnClickListener, ClipboardManager.OnPrimaryClipChangedListener {
    private ClipboardManager cm;
    private TextView tvClipboard;


    @Override
    public View onCreateInputView() {
        //return super.onCreateInputView();
        View v = getLayoutInflater().inflate(R.layout.layout_keyboard, null);
        v.findViewById(R.id.button1_inputkb).setOnClickListener(this);
        v.findViewById(R.id.button2_inputkb).setOnClickListener(this);
        v.findViewById(R.id.button3_inputkb).setOnClickListener(this);
        v.findViewById(R.id.button4_hide_inputkb).setOnClickListener(this);
        v.findViewById(R.id.button5_del_inputkb).setOnClickListener(this);
        v.findViewById(R.id.buttonMoveUp_kb).setOnClickListener(this);
        v.findViewById(R.id.button2MoveDown_kb).setOnClickListener(this);
        v.findViewById(R.id.button3MoveLeft_kb).setOnClickListener(this);
        v.findViewById(R.id.button4MoveRigth_kb).setOnClickListener(this);
        v.findViewById(R.id.button8_Copy_kb).setOnClickListener(this);
        v.findViewById(R.id.button7_Paste_kb).setOnClickListener(this);
        v.findViewById(R.id.button6_Shear_kb).setOnClickListener(this);
        v.findViewById(R.id.button5_AllSelect_kv).setOnClickListener(this);
        tvClipboard = v.findViewById(R.id.textView3_clipboard_kb);
        //對複製的內容變化作偵聽
        cm = (ClipboardManager) getSystemService(Context.CLIPBOARD_SERVICE);
        cm.setPrimaryClip(ClipData.newPlainText("",""));
        cm.addPrimaryClipChangedListener(this);
        return v;
    }


    @Override
    public void onClick(View v) {
        int id = v.getId();
        if (id == R.id.button4_hide_inputkb){
            hideWindow();
        } else if (moveInputFoucsCorsor(id)) {
        }else{
            InputConnection ic = getCurrentInputConnection();
            if (id == R.id.button1_inputkb){
                //ic.commitText("1",1);
                ic.setComposingText("1", 1);
            }else if (id == R.id.button2_inputkb){
                ic.commitText("2",1);
            }else if (id == R.id.button3_inputkb){
                ic.commitText("3",1);
            }else if (id == R.id.button5_del_inputkb){
                ic.deleteSurroundingText(1, 0);
            }
        }
    }


    /** * 對複製的內容變化作偵聽。 * 只有剪貼板上覆制內容發生變化的時候纔會調用 */
    @Override
    public void onPrimaryClipChanged() {
        ClipData cd = cm.getPrimaryClip();
        String newText = "";
        if( cd.getItemCount()>0){
            newText = cd.getItemAt(0).getText().toString();
        }
        tvClipboard.setText(newText);
    }


    /** * 輸入法中的文本操做(選中、移動等) * http://www.apkbus.com/ask.php?mod=item&tid=167671 * @return */
    private boolean moveInputFoucsCorsor(int vid){
        if (vid == R.id.buttonMoveUp_kb){
            sendDownUpKeyEvents(KeyEvent.KEYCODE_DPAD_UP);
        }else if (vid == R.id.button2MoveDown_kb) {
            sendDownUpKeyEvents(KeyEvent.KEYCODE_DPAD_DOWN);
        }else if (vid == R.id.button3MoveLeft_kb) {
            sendDownUpKeyEvents(KeyEvent.KEYCODE_DPAD_LEFT);
        }else if (vid == R.id.button4MoveRigth_kb) {
            sendDownUpKeyEvents(KeyEvent.KEYCODE_DPAD_RIGHT);
        }else if (vid == R.id.button8_Copy_kb){
            InputConnection ic = getCurrentInputConnection();
            ic.performContextMenuAction(android.R.id.copy);
        }else if (vid == R.id.button7_Paste_kb){
            InputConnection ic = getCurrentInputConnection();
            ic.performContextMenuAction(android.R.id.paste);
        }else if (vid == R.id.button6_Shear_kb){
            InputConnection ic = getCurrentInputConnection();
            ic.performContextMenuAction(android.R.id.cut);
        }else if (vid == R.id.button5_AllSelect_kv){
            InputConnection ic = getCurrentInputConnection();
            ic.performContextMenuAction(android.R.id.selectAll);
        }else {
            //剩下選中、移動改變選中範圍操做,不知該如何實現
            //原來只要按住Shift鍵,再使用上面移動光標(上下左右)的代碼,就能夠實現選中狀態時移動上下左右。按住Shift鍵只要發送按鍵事件
            //http://www.apkbus.com/ask.php?mod=item&tid=167671
            return false;
        }
        return true;
    }
}複製代碼

④,而後,設置屬性關聯上輸入法頁面app

一個是輸入設置頁面關聯,須要在res文件的xml文件夾裏添加一個method.xml文件,具體內容以下ide

<?xml version="1.0" encoding="utf-8"?>
<input-method xmlns:android="http://schemas.android.com/apk/res/android" android:settingsActivity="com.example.myapplicationlib.InputSetsActivity"/>複製代碼

另外一個是彈出的輸入頁面關聯,須要在layout文件夾添加布局,文件名是設置頁面的佈局文件,上面已經提到,
佈局

接着是AndroidManifest.xml文件裏的,相關修改以下測試

<application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme">

    <activity android:name=".InputSetsActivity"></activity>

    <service android:name=".service.MyInputService" android:permission="android.permission.BIND_INPUT_METHOD">
        <intent-filter>
            <action android:name="android.view.InputMethod" />
        </intent-filter>
        <meta-data android:name="android.view.im" android:resource="@xml/method" />
    </service>
</application>複製代碼

⑤,能夠嘗試編譯運行,成功安裝後,運行效果圖以下,this

PS:一個輸入設置頁面,用於測試輸入,另外一個是底部彈出的輸入佈局, 第一次用,須要在系統輸入法裏面設置該輸入法,並勾選啓用便可spa

對了,參考來源也獻上:.net

一,輸入法的開發入門: 點這

二,輸入法的光標操做: 點這

相關文章
相關標籤/搜索