簡體   English   中英

AndroidX遷移-數據綁定錯誤msg:找不到參數類型為int的屬性“ android:visibility”的設置器

[英]AndroidX migration - data binding error msg:Cannot find the setter for attribute 'android:visibility' with parameter type int

我正在將項目遷移到AndroidX並出現以下錯誤:

造成原因:java.lang.RuntimeException:android.databinding.tool.util.LoggedErrorException:發現了數據綁定錯誤。 **** /數據綁定錯誤**** msg:在androidx.constraintlayout.ConstraintLayout上找不到參數類型為int的屬性“ android:visibility”的設置器

而有問題的布局是:

<androidx.constraintlayout.ConstraintLayout
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_centerInParent="true"
  android:visibility="@{myVar == STRING_SUCCESS ? View.GONE : View.VISIBLE}">

我不知道從哪里開始。非常感謝您的幫助。

嘗試使用androidx.constraintlayout.widget.ConstraintLayout

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM