Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Data Binding @BindingConversion failure for int to string

Ran into a mysterious problem when trying to make a @BindingConversion for int to string.
The following code works for floats to strings:

xml:

...
<variable
        name="myViewModel"
        type="... .SomeModel" />
...
<TextView
            style="@style/StyleStuff"
            android:text="@{myViewModel.number}" />

code:

public class SomeModel {
    public ObservableFloat number = new ObservableFloat();
}

and setting:

viewModel.number.set(3.14f);

But if I try the same thing for ints to strings I get a crash.

 public ObservableInt number = new ObservableInt();

with

viewModel.number.set(42);

I get the following:

FATAL EXCEPTION: main
Process: ...myapplication, PID: 14311
android.content.res.Resources$NotFoundException: String resource ID #0xfa0
    at android.content.res.Resources.getText(Resources.java:1123)
    at android.support.v7.widget.ResourcesWrapper.getText(ResourcesWrapper.java:52)
    at android.widget.TextView.setText(TextView.java:4816)
    at ...executeBindings(ActivityAdaptersBinding.java:336)
    at android.databinding.ViewDataBinding.executePendingBindings(ViewDataBinding.java:355)

Any ideas? Thanks!

like image 532
Dave Avatar asked Jun 16 '16 19:06

Dave


3 Answers

android:text with an int assumes that the int is a string resource ID. Use android:text="@{Integer.toString(myViewModel.number)}".

You will also need to import the Integer class: (no longer needed)

like image 117
CommonsWare Avatar answered Nov 11 '22 01:11

CommonsWare


Beware, In latest DataBinding (2019), It does NOT require importing Integer nor String or you will get this error:

****/ data binding error ****msg:Missing import expression although it is registered file

official doc says : java.lang.* is imported automatically.

Just go either

android:text="@{Integer.toString(myViewModel.number)}" or

android:text="@{String.valueOf(myViewModel.number)}"

directly.

like image 24
Wesely Avatar answered Nov 11 '22 00:11

Wesely


Convert int to string for set in TextView like below:

android:text="@{String.valueOf(myViewModel.number)}"

Also, String class must be imported by the layout:

<layout>
   <data>
      <import type="java.lang.String" />
   </data>

   …

</layout>
like image 23
Marjan Davodinejad Avatar answered Nov 11 '22 01:11

Marjan Davodinejad