
软键盘
陈福旭
这个作者很懒,什么都没留下…
展开
-
弹起隐藏键盘
/** * Project_name:TaobaoUnion * Created by:ChenFuXu. * Date: 2022/3/26 20:31 * <p> * 弹起、隐藏键盘工具类 */ public class KeyboardUtils { public static void showKeyboard(Context context, View view) { InputMethodManager inputMethodManager = .原创 2022-03-27 15:20:17 · 308 阅读 · 0 评论 -
改写软件盘回车键
1、在xml文件的editText中设置android:imeOptions="actionSearch"属性 <EditText android:id="@+id/search_input_box" android:layout_width="match_parent" android:layout_height="30dp" android:layout_centerVertical="true"原创 2022-03-26 18:05:51 · 2605 阅读 · 0 评论 -
如何解决软键盘顶起了布局
1、在activity中添加如下属性 android:windowSoftInputMode="adjustPan" <activity android:name=".ui.activity.MainActivity" android:windowSoftInputMode="adjustPan" > <intent-filter> <action android:name="android原创 2022-03-26 18:03:03 · 331 阅读 · 0 评论