Android 掃碼槍輸入時遮蔽軟鍵盤和頂部狀態列

huelse發表於2024-10-11

這是個掃碼槍回車輸入掃碼內容的介面,常用於收銀收款等場景
前期踩了很多坑,網上的資料也因為 Android 歷史版本不同有各種相容問題,最後總結了下
在無霸屏設定的 android 裝置上使用如下方案可有效避免介面彈出軟鍵盤和顯示頂部狀態列問題,環境為 Android 7.1.2
遮蔽軟鍵盤:自動聚焦 的 inputType 設定為 none
隱藏頂部狀態:方案一 hideStatusBar 必須在 setContentView 之前,方案二在 styles 中設定 NoActionBar 具體可自行搜尋

  • AndroidManifest.xml
<activity
    android:name=".MyActivity"
    android:windowSoftInputMode="stateHidden"
    android:exported="false" />
  • activity_my.xml
<EditText
    android:id="@+id/scanInput"
    android:layout_width="0dp"
    android:layout_height="0dp"
    android:focusable="true"
    android:focusableInTouchMode="true"
    android:focusedByDefault="true"
    android:importantForAutofill="no"
    android:inputType="none" />
  • MyActivity.kt
class MyActivity : AppCompatActivity() {
    private lateinit var binding: ActivityMyBinding

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        binding = ActivityMyBinding.inflate(layoutInflater)
        hideStatusBar()
        setContentView(binding.root)
        hideSoftKeyboard()
    }

    override fun onResume() {
        super.onResume()
        hideSoftKeyboard()
        hideActionBar()
    }

    private fun hideSoftKeyboard() {
        window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN)
        this.currentFocus?.let { view ->
            val imm = getSystemService(Context.INPUT_METHOD_SERVICE) as? InputMethodManager
            imm?.hideSoftInputFromWindow(view.windowToken, InputMethodManager.RESULT_HIDDEN)
        }
    }

    private fun hideStatusBar() {
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        window.setFlags(
            WindowManager.LayoutParams.FLAG_FULLSCREEN,
            WindowManager.LayoutParams.FLAG_FULLSCREEN
        )
    }

    private fun hideActionBar() {
        window.decorView.systemUiVisibility = View.SYSTEM_UI_FLAG_FULLSCREEN
        actionBar?.hide()
    }

}

如有問題或建議,歡迎大家評論區討論指正!

相關文章