私のアプリには、ユーザーが何を入力したかに関係なく、提案リストのすべてのアイテムを強制的に表示する必要がある瞬間があります。どうやってやるの?
フィルタリングを使って何かをしようとしましたが、初心者のフィルタリングは非常に複雑なので、運が悪かったので、フィルタリングの初心者向けチュートリアルを検索してみました。たぶん、すべての提案項目を強制的に表示する簡単な方法はありますか?
編集:基本的に私の考えは、ユーザーがリストにないものを入力すると、使用可能なすべてのオプションが表示されるということです。
ACTVが表示されているかどうかを確認する最良の方法を見つけましたが、onTextChangeEventでユーザーが入力したテキストをリストと比較し、要素が見つからない場合は完全なリストを表示します。
public void onTextChanged(CharSequence s, int start, int before, int count)
{
final EditText editText = (EditText) findViewById(R.id.vardsUserInput);
String strValue = editText.getText().toString().toUpperCase();
String temp;
int Cc=0; //my count variable
for(int i=0; i<vardi.length; i++)
{
temp = vardi[i].toUpperCase();
if(temp.startsWith(strValue.toUpperCase()))
{
Log.d("testing",vardi[i]);
Cc++;
}
}
if(Cc == 0)
{
//Show all the available options
textView.showDropDown();
}
}
基本的に、いまいましいフィルターがどのように機能するかを理解するための5〜6時間の実験の後、私は自分の望むことを正確に実行する独自のアダプターを作成しました。
_ public class burtuAdapteris extends ArrayAdapter<String> implements Filterable {
ArrayList<String> _items = new ArrayList<String>();
ArrayList<String> orig = new ArrayList<String>();
public burtuAdapteris(Context context, int resource, ArrayList<String> items) {
super(context, resource, items);
for (int i = 0; i < items.size(); i++) {
orig.add(items.get(i));
}
}
@Override
public int getCount() {
if (_items != null)
return _items.size();
else
return 0;
}
@Override
public String getItem(int arg0) {
return _items.get(arg0);
}
@Override
public Filter getFilter() {
Filter filter = new Filter() {
@Override
protected FilterResults performFiltering(CharSequence constraint) {
if(constraint != null)
Log.d("Constraints", constraint.toString());
FilterResults oReturn = new FilterResults();
/* if (orig == null){
for (int i = 0; i < items.size(); i++) {
orig.add(items.get(i));
}
}*/
String temp;
int counters = 0;
if (constraint != null){
_items.clear();
if (orig != null && orig.size() > 0) {
for(int i=0; i<orig.size(); i++)
{
temp = orig.get(i).toUpperCase();
if(temp.startsWith(constraint.toString().toUpperCase()))
{
_items.add(orig.get(i));
counters++;
}
}
}
Log.d("REsult size:" , String.valueOf(_items.size()));
if(!counters)
{
_items.clear();
_items = orig;
}
oReturn.values = _items;
oReturn.count = _items.size();
}
return oReturn;
}
@SuppressWarnings("unchecked")
@Override
protected void publishResults(CharSequence constraint, FilterResults results) {
if(results != null && results.count > 0) {
notifyDataSetChanged();
}
else {
notifyDataSetInvalidated();
}
}
};
return filter;
}
}
_
また、使い方は簡単です。元のアダプターを次のように交換するだけです。
_final burtuAdapteris fAdapter = new burtuAdapteris(this, Android.R.layout.simple_dropdown_item_1line, liste);
_
私の場合、リストは次のとおりです。ArrayList<String> liste = new ArrayList<String>();
すべての結果を表示するときに「瞬間」を定義するわけではないので、これが当てはまると思います。しかし、次のようなことを試してください。
AutoCompleteTextView autoComplete;
String savedText;
public void showAll() {
savedText = autoComplete.getText().toString();
autoComplete.setText("");
autoComplete.showDropDown();
}
public void restore() {
autoComplete.setText(savedText);
}
これは私にとって完璧に機能します。これは問題を解決する簡単な方法です。
final ArrayAdapter<String> adapter = new ArrayAdapter<>(getContext(), Android.R.layout.simple_dropdown_item_1line, usernameLists);
etUsername.setThreshold(1);
etUsername.setAdapter(adapter);
etUsername.setOnTouchListener(new View.OnTouchListener() {
@SuppressLint("ClickableViewAccessibility")
@Override
public boolean onTouch(View paramView, MotionEvent paramMotionEvent) {
if (usernameLists.size() > 0) {
// show all suggestions
if (!etUsername.getText().toString().equals(""))
adapter.getFilter().filter(null);
etUsername.showDropDown();
}
return false;
}
});
メソッドは強制的にドロップダウンリストを表示します。
requestFocus();を呼び出す必要があります。キーボードを表示します。そうでない場合、キーボードはポップアップしません。
autocomptv.setOnTouchListener(new OnTouchListener() {
@SuppressLint("ClickableViewAccessibility")
@Override
public boolean onTouch(View paramView, MotionEvent paramMotionEvent) {
// TODO Auto-generated method stub
autocomptv.showDropDown();
autocomptv.requestFocus();
return false;
}
});
「ArtOfWarfare」が示唆しているように、performFiltering()をサブクラス化してオーバーライドするだけです。
public class My_AutoCompleteTextView extends AutoCompleteTextView {
public My_AutoCompleteTextView(Context context) {
super(context);
}
public My_AutoCompleteTextView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public My_AutoCompleteTextView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
@Override
protected void performFiltering(CharSequence text, int keyCode) {
super.performFiltering("", 0);
}
}
提案をすぐに表示したい場合は、enoughToFilter()
をオーバーライドして、常にtrueを返すようにする必要があります。テキスト入力として与えられたものを無視するには、空のフィルタリングパターンでperformFiltering("", 0)
を使用する必要があります。 AutoCompleteTextViewは、すべての提案を表示します。
これは私が他のStackOverflowの投稿から組み合わせたソリューションです:
public class InstantAutoComplete extends Android.support.v7.widget.AppCompatAutoCompleteTextView {
public InstantAutoComplete(Context context) {
super(context);
}
public InstantAutoComplete(Context context, AttributeSet attrs) {
super(context, attrs);
}
public InstantAutoComplete(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
@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("", 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);
}
}
class InstantAutoComplete(context: Context?, attrs: AttributeSet?) : AutoCompleteTextView(context, attrs) {
override fun enoughToFilter(): Boolean {
return true
}
override fun onFocusChanged(focused: Boolean, direction: Int, previouslyFocusedRect: Rect?) {
super.onFocusChanged(focused, direction, previouslyFocusedRect)
if (focused && filters != null) {
performFiltering(text, 0)
}
}
fun performFilter() {
performFiltering(text, 0)
showDropDown()
}
}
ボタンのドロップダウン(imageview)をクリックした後、autocompletetextviewのすべてのデータを表示する必要があります。クラスを使用してAutoCompleteTextViewを拡張し、この関数を追加すると、魔法のように機能します。
シンプルで簡単な答えは次のとおりです。
autoCompleteTextView.setText("")
の後、次のようにアダプタからフィルタを削除するだけです。
autoCompleteTextView.adapter.filter.filter(null)
これで、フィルタリングがなくなり、ドロップダウンリスト全体が表示されます。