簡體   English   中英

刪除一個動態創建的按鈕android

[英]delete a dynamically created button android

好的,我想做的是,類似於標簽搜索功能。 我所做的是創建 Button ArrayList,每當用戶嘗試輸入“,”時,它會自動創建一個按鈕並將其插入到 ArrayList 中,后者最終注冊到 LinearLayout。

它創建得很好,但刪除得不好。 我收到索引超出范圍的錯誤,但我沒有找到應該使用哪個語句。 你可以幫幫我嗎? 提前謝謝。

public class MainActivity extends AppCompatActivity {

private ArrayList<Button> tagCollection = null;
private LinearLayout llTagCollection = null;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    tagCollection = new ArrayList<Button>();
    initView();
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.menu_main, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();

    //noinspection SimplifiableIfStatement
    if (id == R.id.action_settings) {
        return true;
    }

    return super.onOptionsItemSelected(item);
}

public void initView() {
    final EditText etSearch = (EditText) findViewById(R.id.ET_SEARCH);
    // final TextView tvResult = (TextView) findViewById(R.id.TV_RESULT);
    llTagCollection = (LinearLayout) findViewById(R.id.LL_BUTTON_COLLECTION);


    View currentView = new View(getApplicationContext());
    /*
    if(tagCollection.size() != 0) {
        tagCollection.get(currentView.getId()).setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                tagCollection.remove(tagCollection.get(v.getId()));
                Log.e("Removed", String.valueOf(tagCollection.remove(tagCollection.get(v.getId()))));
                // tagCollection.remove(this);
                llTagCollection.removeAllViews();
                int i = 0;
                while (i < (tagCollection.size())) {
                    llTagCollection.addView(tagCollection.get(i));
                    i += 1;
                }
            }
        });
    }
    */

    TextWatcher tagWatcher = new TextWatcher() {
        @Override
        public void beforeTextChanged(CharSequence s, int start, int count, int after) {

        }

        @Override
        public void onTextChanged(CharSequence s, int start, int before, int count) {

            String convertedCharSequence = s.toString();
            Log.e("ConvertedString", convertedCharSequence);
            if (convertedCharSequence.length() > 0) {
                String subString = convertedCharSequence.substring(convertedCharSequence.length() - 1);
                Log.e("SubStringPosition", subString);

                if (subString.equals(",")) {
                    // tvResult.setText(etSearch.getText().toString());
                    Button bTagButton = new Button(MainActivity.this);
                    bTagButton.setId(tagCollection.size());
                    bTagButton.setText(etSearch.getText().toString());
                    bTagButton.setBackgroundColor(Color.WHITE);
                    bTagButton.setTextColor(Color.BLACK);
                    /*
                    RelativeLayout.LayoutParams rlLayoutParams = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.WRAP_CONTENT);

                    if(tagCollection.size() != 0){
                        rlLayoutParams.addRule(RelativeLayout.END_OF, tagCollection.get(0).getId());
                    }
                    bTagButton.setLayoutParams(rlLayoutParams);
                    */

                    bTagButton.setOnClickListener(new View.OnClickListener(){
                        @Override
                        public void onClick(View v) {
                            tagCollection.remove(tagCollection.indexOf(this));

                            llTagCollection.removeAllViews();
                            int i = 0;
                            while (i < (tagCollection.size())) {
                                if(tagCollection.get(i) != null){
                                    llTagCollection.addView(tagCollection.get(i));
                                }

                                i += 1;
                            }
                        }
                    });


                    tagCollection.add(bTagButton);

                    llTagCollection.removeAllViews();
                    int i = 0;
                    while (i < (tagCollection.size())) {
                        llTagCollection.addView(tagCollection.get(i));
                        i += 1;
                    }
                    // setContentView(rlTagCollection);
                    etSearch.setText("");
                    etSearch.setSelection(0);
                }

            }

        }

        @Override
        public void afterTextChanged(Editable s) {

        }
    };
    etSearch.addTextChangedListener(tagWatcher);
}

}

我使用 indexOfChild 函數解決了它。 它不斷向我拋出 indexOutOfBounds 錯誤。 謝謝

由於聲譽,我無法發表評論。 所以我在這里發帖。

在按鈕單擊偵聽器中:

bTagButton.setOnClickListener(new View.OnClickListener() {
                        @Override
                        public void onClick(View v) {
                            tagCollection.remove(tagCollection.indexOf(this));

                            llTagCollection.removeAllViews();
                            int i = 0;
                            while (i < (tagCollection.size())) {
                                if (tagCollection.get(i) != null) {
                                    llTagCollection.addView(tagCollection.get(i));
                                }

                                i += 1;
                            }
                        }
                    });

您通過tagCollection.remove(tagCollection.indexOf(this));刪除按鈕 . this意味着OnClickListener實例,而不是單擊的按鈕。 所以你應該通過以下方式刪除按鈕:

tagCollection.remove(tagCollection.indexOf(v));

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM