首页 > 解决方案 > 如何只给一个按钮充气一次?

问题描述

我想只使用一次充气机创建动态按钮。我有三个按钮,我有一个加载功能。这个函数在每个按钮和每个调用时间调用,预建按钮出现。我希望每次单击按钮时只创建一个按钮。如何?

   LayoutInflater inflater = (LayoutInflater) getActivity().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    assert inflater != null;
    LinearLayout root = (LinearLayout) inflater.inflate(R.layout.analyze_company_buttons_layout, null, false);

    Button btnCompany = root.findViewById(R.id.btnCompany);
    btnCompany.setText(header);
    btnCompany.setTag(headerCode);
    btnCompany.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            String compCode = (String) view.getTag();
            Company company = getCompany(compCode, filterCompanyList);
            lines = new ArrayList<>();
            if (company != null) {

                filterCompanyList.remove(company);

                setBackgroundColorForTabButton(view, lytTabs, R.color.colorPrimaryExtraExtraLight, R.color.white);

            } else {
                company = getCompany(compCode, companyList);
                filterCompanyList.add(company);
                setBackgroundColorForTabButton(view, lytTabs, R.color.white, R.color.colorPrimaryExtraExtraLight);
            }
            loadFunct(startDate, endDate, "LW");
        }
    });

    lytTabs.addView(root);
    setBackgroundColorForTabButton(btnCompany, lytTabs, R.color.white, R.color.colorPrimaryExtraExtraLight);
    lytTabs.invalidate();

标签: androidbuttonlayout-inflaterandroid-inflate

解决方案


lytTabs.removeAllViews(); 功能适用于它


推荐阅读