0

在我的应用程序中,我的活动顶部有一个 AutoCompleteTextView 字段,活动底部有一个列表。所以我遇到的问题是当活动打开列表被键盘覆盖时。AutoCompleteTextView 字段会自动聚焦,这会导致键盘显示。有没有办法告诉活动最初不显示键盘?

    <AutoCompleteTextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/AutoCompleteInput" />

我已经在很多领域寻找解决方案,但没有什么安静适合我的情况。我看过的大多数论坛都是关于 TextViews 或 iOS 的。

4

1 回答 1

3

android:focusableInTouchMode="true"在您的父布局视图上使用。

在此处查看此 SO 帖子:

https://stackoverflow.com/a/1662088/6211127

于 2017-10-19T18:25:29.550 回答