2

maybe someone knows how to add List<Any> or List<*> variable in databinding with any type?

When type is known it is done like this:

<data>

    <import type="java.util.List" />

    <variable
        name="list"
        type="List&lt;String>" />
</data>

1 Answer 1

4

answering my own question:

 <data>

        <import type="java.util.List" />

        <variable
            name="list"
            type="List&lt;Object>" />
    </data>

Key is using Object

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.