( Context context , View view )
| 53 | |
| 54 | //弹出键盘 |
| 55 | public static void showInputMethod( Context context , View view ) |
| 56 | { |
| 57 | InputMethodManager imm = ( InputMethodManager ) context |
| 58 | .getSystemService( Context.INPUT_METHOD_SERVICE ); |
| 59 | if ( imm != null ) |
| 60 | { |
| 61 | imm.showSoftInput( view , 0 ); |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | /** dip转px */ |
| 66 | public static int dipToPx(Context context, int dip) { |