Android Data Binding @BindingConversion failure fo

2019-01-24 00:17发布

问题:

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!

回答1:

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:

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

   <!-- rest of layout goes here -->

</layout>


回答2:

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>


回答3:

Simplest solution, may be it would help someone.

android:text="@{`` + model.intValue}"

This can be used in two-way binding for EditText also. Where users input is set as Integer value in model, and shown as String.

android:text="@={`` + model.intValue}"

See this answer also.



回答4:

This worked for me

  <TextView
        android:id="@+id/number"
        android:text='@={Converter.convertIntToString(myViewModel.number)}'

        />

Converter class with inverse method

public class Converter {


public static int convertStringToInt(String text) {
   return Integer.parseInt(text);
}

@InverseMethod(value="convertStringToInt")
public static String convertIntToString(int value) {
    return Integer.toString(value);
}}