验证 RecyclerView 内容

Validate RecyclerView content

我认为没有必要重复我的 RecyclerView 设置的确切描述。此处对此进行了描述:

简而言之,我的 Recycler View 可能包含各种控件,如编辑文本、微调器等。然后,recyclerview 被放置在 Activity 布局中,始终以嵌套滚动视图作为其父级展开。当用户点击我的 activity 中的 "Confirm" 按钮时,应验证回收视图的内容 - 例如,如果任何特定项目包含需要非空的文本视图,则 activity 不应完成和标准应该显示特定编辑文本中的错误标记。

在我的回收站视图中,我创建了 validate 方法,它应该 return truefalse 以便我知道验证结果。但是,我不知道如何从适配器访问特定的 recyclerview 项目的内容,这是我的方法(在这种情况下,编辑文本控件并将类型设置为电子邮件):

public boolean validate()
    {
        for(Object item : items)
        {
            Parameter p = (Parameter)item;

            switch (p.type)
            {
                case Parameter.EMAIL_PARAM:
                {

                    String email = ((EmailParameter)p).value;
                    /*validate email here, if invalid, return
                     false and set error indicatior for corresponding 
                     recyclerview item*/

                }
            }
        }


        return true;
    }

itemsList<Object>,它包含具有各种实际类型的所有 recyclerview 项目,每种类型决定呈现的特定 recyclerview 内容。当用户更改特定项目的控件时,来自 items 的相应项目将分别更新,因此当调用 validate 时,所有项目都包含新数据(在 EmailParameter 的情况下它将是 value 字段已设置为在编辑文本控件中键入的文本)。

因为我可以轻松验证最终值,所以我不知道如何更新相应的回收器视图项控件以显示错误。

你有什么想法吗?

也许那个图书馆就是你需要的https://github.com/Link184/KidAdapter

这是一个如何验证数据的简短示例:

val adapter : TypedKidAdapter = recyclerView.setUp {
    withViewType {
        withItems(mutableListOf("one", "two"))
        withLayoutResId(android.R.layout.list_content)
        withContentComparator<String> { oldObject, newObject ->
            insertNewViewType(newItems)
            oldObject.compareTo(newObject)
        }
        withItemsComparator<String> { oldObject, newObject ->
            oldObject.equals(newObject).also {
                updateItemsFromViewType(someNewItems)
            }
        }
        bind<String> {
            //ui logic
        }
    }

    withViewType {
        //another viewtype config
    }
}

fun insertNewViewType(newItems: MutableList<Any>) {
    adapter restructure {
        insertTop {
            withItems(newItems)
            withLayoutResId(android.R.layout.list_content)
            withItemsComparator<Any> {
                ...
            }
            bind<Any> { 
                //UI logic
            }
        }
    }
}

fun updateItemsFromViewType(newItems: String) {
    adapter update {
        insertBottom(newItems)
    }
}

工作解决方案 - 使用 notifyDatasetChanged:

public boolean validate()
    {
        boolean allValid = true;

        for(Object item : items)
        {
            Parameter p = (Parameter)item;

            switch (p.type)
            {
                case Parameter.EMAIL_PARAM:
                {

                    String email = ((EmailParameter)p).value;
                    /*validate email here, if invalid, return
                     false and set error indicatior for corresponding 
                     recyclerview item*/

                    p.errorMessage = valid ? null:"Email is incorrect";
                    allValid &= valid;

                    break;

                }
               /*All remaining parameter types validaion*/
            }



        }


         if(!allValid) this.notifyDataSetChanged();
         return allValid;
    }