我将“编辑文本”用作android Recycler视图的视图,但是,当用户未在“编辑文本”中输入任何值时,我将无法显示错误消息或在该空的“编辑”文本上自动滚动。我正在使用“回收者视图”编辑文本将一些数据存储到数据库中,我进行了很多搜索,但没有找到任何帮助材料。我想在验证所有字段(编辑文本)之前提交该回收者视图数据。
答案 0 :(得分:0)
已解决。
int counter = 0;
for(int i=0;i<stockData.length;i++) {
for (int j = 0; j < stockData[i].length; j++) {
if((stockData[i][0]==null || stockData[i][0].matches("")) ||
((stockData[i][1]==null || stockData[i][1].matches("")) ||
(stockData[i][4]==null || stockData[i][4].matches("Stock"))))
{
counter++;
//Log.d(Constants.TAG,"sale is empty and index is "+i);
mPromoter_recyclerView.scrollToPosition(i);
break;
}
}
if(counter>0)
break;
}