如何只给按钮充气一次



我想只使用充气机一次动态创建按钮。我有三个按钮和一个加载功能。这个函数在每个按钮中调用,每次调用时,都会应用预先构建的按钮。我想每次点击按钮只创建一个按钮。怎样

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();

lytTables.removeAllViews((;功能适用于it

最新更新