android 开发收银系统,弹出键盘固定界面UI的方法

在使用 android:windowSoftInputMode="adjustPan" 和getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN);还不起作用时,

看一下SearchView是否添加

android:imeOptions="flagNoExtractUi"
android:windowSoftInputMode="adjustPan"
    android:launchMode="singleTop">
    
        
        
    

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN);

        .....

}

android 开发收银系统,弹出键盘固定界面UI的方法_第1张图片

你可能感兴趣的:(android移动开发)