EditText获得焦点,并显示软键盘,这导致getView被调用

时间:2015-08-11 05:01:43

标签: android listview android-edittext adapter android-softkeyboard



String name = file.getAbsolutePath();
FileUtils.deleteDirectory(file)




以上是我的布局。每当EditText聚焦时(这将导致android显示软键盘),调用Adapter内的getView函数。但我不想要这种行为。有人可以帮我吗?提前谢谢。

1 个答案:

答案 0 :(得分:0)

如果您的布局自动显示键盘,您可以在根布局中使用 android:focusableInTouchMode="true" 来隐藏键盘。并且仅在焦点上显示

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ptr="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:focusableInTouchMode="true"
android:layout_height="match_parent">

<EditText
            android:layout_marginBottom="5dp"
            android:hint="写跟贴"
            android:textColorHint="@color/comment_hint"
            android:textSize="15sp"
            android:id="@+id/et_comment"
            android:layout_toLeftOf="@id/tv_send_comment"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent" />
</RelativeLayout>