13 lines
404 B
Java
13 lines
404 B
Java
package com.ubt.jimu.utils;
|
|
|
|
import android.content.Context;
|
|
import android.view.inputmethod.InputMethodManager;
|
|
import android.widget.EditText;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class KeybordUtils {
|
|
public static void a(EditText editText, Context context) {
|
|
((InputMethodManager) context.getSystemService("input_method")).hideSoftInputFromWindow(editText.getWindowToken(), 0);
|
|
}
|
|
}
|