嗨,伙计们,我需要你们的帮助
我正在做一个购物应用程序的用户将输入条形码和程序将输入产品的名称和价格
这是table的照片
但我不知道该怎么做。我使用了“tablelayout”,添加了14个“tablerow”,下面是我的代码
code=findViewById(R.id.barcode);
code.addTextChangedListener(enter);
}
private TextWatcher enter = 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) {
if(code.getText().toString().trim().equals("659245631")) {
//what can i write here to add row like this
// (coulmn0,coulmn1)
// ( price , product name)
}
}
@Override
public void afterTextChanged(Editable s) {
if(code.getText().toString().trim().equals("659245631"))
{
}
}
};
但我不知道需要什么行动你能帮我吗?
1条答案
按热度按时间4jb9z9bj1#
你可以替换
TableRow
与ListView
或者RecycleView
,并根据条形码进行过滤。下面是一个关于如何创建listview的简单示例
下面是一个如何在listview中进行筛选的示例。