show Soft Input - Android Phone

Android examples for Phone:KeyBoard

Description

show Soft Input

Demo Code


//package com.java2s;
import android.content.Context;

import android.view.inputmethod.InputMethodManager;

public class Main {

    public static void showSoftInput(Context context) {
        InputMethodManager imm = (InputMethodManager) context
                .getSystemService(Context.INPUT_METHOD_SERVICE);
        imm.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS);
    }//from ww w .  ja va 2  s  .  co  m
}

Related Tutorials