私はAutoCompleteTextView
を使用しています。ユーザーがクリックすると、テキストがなくても提案を表示したいのですが、setThreshold(0)
はsetThreshold(1)
とまったく同じように機能します-そのため、ユーザーは提案を表示するために少なくとも1文字入力する必要があります。
これは 文書化された動作 :
threshold
が0以下の場合、1のしきい値が適用されます。
showDropDown()
を使用してドロップダウンを手動で表示できるため、必要に応じてドロップダウンを表示するように調整できます。または、AutoCompleteTextView
をサブクラス化し、enoughToFilter()
をオーバーライドして、常にtrue
を返します。
これが私のクラスですInstantAutoComplete。 AutoCompleteTextView
とSpinner
の間の何かです。
import Android.content.Context;
import Android.graphics.Rect;
import Android.util.AttributeSet;
import Android.widget.AutoCompleteTextView;
public class InstantAutoComplete extends AutoCompleteTextView {
public InstantAutoComplete(Context context) {
super(context);
}
public InstantAutoComplete(Context arg0, AttributeSet arg1) {
super(arg0, arg1);
}
public InstantAutoComplete(Context arg0, AttributeSet arg1, int arg2) {
super(arg0, arg1, arg2);
}
@Override
public boolean enoughToFilter() {
return true;
}
@Override
protected void onFocusChanged(boolean focused, int direction,
Rect previouslyFocusedRect) {
super.onFocusChanged(focused, direction, previouslyFocusedRect);
if (focused && getAdapter() != null) {
performFiltering(getText(), 0);
}
}
}
Xmlで次のように使用します。
<your.namespace.InstantAutoComplete ... />
最も簡単な方法:
SetOnTouchListenerとshowDropDown()を使用するだけです
AutoCompleteTextView text;
.....
.....
text.setOnTouchListener(new View.OnTouchListener(){
@Override
public boolean onTouch(View v, MotionEvent event){
text.showDropDown();
return false;
}
});
Destilのコードは、InstantAutoComplete
オブジェクトが1つしかない場合に最適に機能します。 2つでは機能しませんでした-理由はわかりません。しかし、次のようにshowDropDown()
(CommonsWareが推奨するように)をonFocusChanged()
に入れると:
@Override
protected void onFocusChanged(boolean focused, int direction,
Rect previouslyFocusedRect) {
super.onFocusChanged(focused, direction, previouslyFocusedRect);
if (focused) {
performFiltering(getText(), 0);
showDropDown();
}
}
問題を解決しました。
2つの答えを適切に組み合わせただけですが、誰かの時間を節約できることを願っています。
アダプタは最初にフィルタリングを実行しません。
フィルタリングが実行されない場合、ドロップダウンリストは空です。
したがって、最初にフィルタリングを実行する必要がある場合があります。
そのためには、エントリの追加が完了した後にfilter()
を呼び出すことができます。
adapter.add("a1");
adapter.add("a2");
adapter.add("a3");
adapter.getFilter().filter(null);
上記のDestilの答えはほとんど機能しますが、微妙なバグが1つあります。ユーザーが最初にフィールドにフォーカスを置いたときは動作しますが、フィールドを離れてフィールドに戻った場合、mPopupCanBeUpdatedの値は非表示のときからまだfalseであるため、ドロップダウンは表示されません。修正するには、onFocusChangedメソッドを次のように変更します。
@Override
protected void onFocusChanged(boolean focused, int direction,
Rect previouslyFocusedRect) {
super.onFocusChanged(focused, direction, previouslyFocusedRect);
if (focused) {
if (getText().toString().length() == 0) {
// We want to trigger the drop down, replace the text.
setText("");
}
}
}
OnFocusChangeListenerを使用できます。
TCKimlikNo.setOnFocusChangeListener(new OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (hasFocus) {
TCKimlikNo.showDropDown();
}
}
});
AutoCompleteTextViewのイベントまたは任意の場所でタッチまたはクリックイベントでこのメソッドを呼び出すだけです。
autoCompleteTextView.showDropDown()
CustomAutoCompleteTextViewを作成します。 1. setThreshold、enoughToFilter、onFocusChangedメソッドをオーバーライドします
public class CustomAutoCompleteTextView extends AutoCompleteTextView {
private int myThreshold;
public CustomAutoCompleteTextView (Context context) {
super(context);
}
public CustomAutoCompleteTextView (Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
public CustomAutoCompleteTextView (Context context, AttributeSet attrs) {
super(context, attrs);
}
//set threshold 0.
public void setThreshold(int threshold) {
if (threshold < 0) {
threshold = 0;
}
myThreshold = threshold;
}
//if threshold is 0 than return true
public boolean enoughToFilter() {
return true;
}
//invoke on focus
protected void onFocusChanged(boolean focused, int direction,
Rect previouslyFocusedRect) {
//skip space and backspace
super.performFiltering("", 67);
// TODO Auto-generated method stub
super.onFocusChanged(focused, direction, previouslyFocusedRect);
}
protected void performFiltering(CharSequence text, int keyCode) {
// TODO Auto-generated method stub
super.performFiltering(text, keyCode);
}
public int getThreshold() {
return myThreshold;
}
}
それを試してみてください
searchAutoComplete.setThreshold(0);
searchAutoComplete.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {
}
@Override
public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {//cut last probel
if (charSequence.length() > 1) {
if (charSequence.charAt(charSequence.length() - 1) == ' ') {
searchAutoComplete.setText(charSequence.subSequence(0, charSequence.length() - 1));
searchAutoComplete.setSelection(charSequence.length() - 1);
}
}
}
@Override
public void afterTextChanged(Editable editable) {
}
});
//when clicked in autocomplete text view
@Override
public void onClick(View view) {
switch (view.getId()) {
case R.id.header_search_etv:
if (searchAutoComplete.getText().toString().length() == 0) {
searchAutoComplete.setText(" ");
}
break;
}
}):
7年後も、問題は同じままです。これは、その愚かなポップアップを強制的に任意の条件で表示する関数を持つクラスです。必要なことは、AutoCompleteTextViewにアダプターを設定し、それにデータを追加して、いつでもshowDropdownNow()
関数を呼び出すことです。
@DavidVávraのクレジット。彼のコードに基づいています。
import Android.content.Context
import Android.util.AttributeSet
import Android.widget.AutoCompleteTextView
class InstantAutoCompleteTextView : AutoCompleteTextView {
constructor(context: Context) : super(context)
constructor(context: Context?, attrs: AttributeSet?) : super(context, attrs)
constructor(context: Context?, attrs: AttributeSet?, defStyleAttr: Int) : super(context, attrs, defStyleAttr)
override fun enoughToFilter(): Boolean {
return true
}
fun showDropdownNow() {
if (adapter != null) {
// Remember a current text
val savedText = text
// Set empty text and perform filtering. As the result we restore all items inside of
// a filter's internal item collection.
setText(null, true)
// Set back the saved text and DO NOT perform filtering. As the result of these steps
// we have a text shown in UI, and what is more important we have items not filtered
setText(savedText, false)
// Move cursor to the end of a text
setSelection(text.length)
// Now we can show a dropdown with full list of options not filtered by displayed text
performFiltering(null, 0)
}
}
}
これは私のために働いた、擬似コード:
public class CustomAutoCompleteTextView extends AutoCompleteTextView {
public CustomAutoCompleteTextView(Context context, AttributeSet attrs) {
super(context, attrs);
}
@Override
public boolean enoughToFilter() {
return true;
}
@Override
protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
super.onFocusChanged(focused, direction, previouslyFocusedRect);
if (focused) {
performFiltering(getText(), 0);
}
}
@Override
public boolean onTouchEvent(MotionEvent event) {
this.showDropDown();
return super.onTouchEvent(event);
}
}
これをJavaのonCreateメソッドに貼り付けるだけです
final ArrayAdapter<String> arrayAdapter = new ArrayAdapter<>(
this, Android.R.layout.simple_spinner_dropdown_item,
getResources().getStringArray(R.array.Loc_names));
textView1 =(AutoCompleteTextView) findViewById(R.id.acT1);
textView1.setAdapter(arrayAdapter);
textView1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(final View arg0) {
textView1.setMaxLines(5);
textView1.showDropDown();
}
});
これをXmlファイルに...
<AutoCompleteTextView
Android:layout_width="200dp"
Android:layout_height="30dp"
Android:hint="@string/select_location"
Android:id="@+id/acT1"
Android:textAlignment="center"/>
そして、Values ...の下にstring.xmlで配列を作成します.
<string-array name="Loc_names">
<item>Pakistan</item>
<item>Germany</item>
<item>Russia/NCR</item>
<item>China</item>
<item>India</item>
<item>Sweden</item>
<item>Australia</item>
</string-array>
そして、あなたは行ってもいいです。