Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Data Binding - Reference to view

I use in my new app the data binding library of android. Currently I try to pass a reference of another view to a method.

I have an ImageButton with an onClickListener. In this onClick listener I want to pass a reference of the root view to the method.

<RelativLayout
    android:id="@+id/root_element"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ImageButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentStart="true"
        android:contentDescription="@string/close_dialog"
        android:src="@drawable/ic_close_212121_24dp"
        android:background="@android:color/transparent"
        android:onClick="@{() -> Helper.doSth(root_element)}"/>

</RelativLayout>

This source code provided above is only an example and not the complete. There are more children and also the image button is not a direct child of the root element. But I think the meaning is clear.

I already tried to pass a reference by specifying the id of the root view (see above). But this doesn't work. If I try to compile this, I get the error, that the type of root_element is not specified.

I also tried to import the generated binding class and access the root element by the public field in it. Also this method doesn't work, since the binding class has to be generated first.

So is there any way to pass a reference of a view to a method? I know that I could pass the id of the root view with @id/root_element, but I don't want that, since I have to find a way to get a reference to this view only with the given id.

like image 764
Fabian Avatar asked Jun 28 '16 13:06

Fabian


1 Answers

You can use root_element, but Android Data Binding camel-cases the names. So, root_element becomes rootElement. Your handler should be:

android:onClick="@{() -> Helper.doSth(rootElement)}"
like image 116
George Mount Avatar answered Oct 27 '22 21:10

George Mount