我使用了data a;
set b;
where customer ne a1-a100;
run;
,而这个片段中使用了Fragmentpageradapter
,但我无法在点击autocompletetextview
时编写任何内容或显示键盘。
来源:
layout_autocompleteTextview:
autocompletetextview
我使用自动完成文本视图的片段
<RelativeLayout
android:id="@+id/rel_seacrh"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="5dp"
android:visibility="gone"
android:background="@color/colorPrimary"
android:padding="10dp">
<AutoCompleteTextView
android:id="@+id/edt_search"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:focusable="true"
android:focusableInTouchMode="true"
android:text=""
android:imeOptions="actionGo|flagNoExtractUi"
android:background="@drawable/search_background"
android:hint="Search Category" />
<requestFocus/>
}
图片:
答案 0 :(得分:0)
你是否在清单文件中尝试过这个,
android:windowSoftInputMode="stateAlwaysVisible"