android-databinding 相关问题

数据绑定库用于编写声明性布局并最小化绑定应用程序逻辑和布局所需的粘合代码。数据绑定库提供了灵活性和广泛的兼容性 - 它是一个支持库,因此您可以将它与所有Android平台版本一起使用,返回到Android 2.1(API级别7+)。

带有数据绑定的Android分页库

我尝试使用数据绑定实现Android分页库。 我无法利用现有的公共资源来实现它。 是否可以将分页库与数据绑定和绑定适应一起使用...

回答 1 投票 0

Android 数据绑定和类类型错误

我正在尝试将数据绑定 XML 布局中的视图从一种类型更改为另一种类型(滚动视图到嵌套滚动视图),但我遇到了这个非常奇怪的崩溃: java.lang.NoSuchFieldError:没有实例...

回答 1 投票 0

无法访问 Android 中的 Activity 绑定

我有一个名为activity_suggestions的布局文件。我在其中使用数据绑定。因此生成了 ActivitySuggestionsBinding 文件。项目编译成功。但是当我尝试运行

回答 3 投票 0

RecyclerView 与 MVVM 中的 Android 数据绑定类型不匹配

我正在使用 Kotlin 和 MVVM 架构开发 Android 笔记应用程序。在 RecyclerView 中使用数据绑定时,我遇到了持续的类型不匹配错误,即使代码看起来是正确的。 呃...

回答 1 投票 0

如何解决有关使用 Android 数据绑定公开内部表示的 SpotBugs 警告?

我正在使用数据绑定开发一个 Android 项目,我在 SpotBugs 违规报告中遇到了一条警告,但我不知道如何解决。这是设置: 我正在开发一个使用数据绑定的 Android 项目,我在 SpotBugs 违规报告中遇到了一条警告,但我不确定如何解决。设置如下: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:gravity="center" android:orientation="vertical" tools:context=".MainActivity"> <TextView android:id="@+id/tv_name" android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center" android:text="Hello World!" android:textColor="@android:color/black" android:textSize="20sp" /> </LinearLayout> package com.example; import android.os.Bundle; import androidx.appcompat.app.AppCompatActivity; import com.example.databinding.ActivityMainBinding; public class MainActivity extends AppCompatActivity { private ActivityMainBinding binding; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // Inflate the layout using the generated binding class binding = ActivityMainBinding.inflate(getLayoutInflater()); // Set the root view as the content view of the activity setContentView(binding.getRoot()); } } 问题: 我从 SpotBugs 收到以下警告: com.example.databinding.ActivityMainBinding.getRoot() may expose internal representation by returning ActivityMainBinding.rootView 问题: 在 Android 中使用数据绑定时,我需要担心此警告吗? 我使用 getRoot() 来设置内容视图是否正确且安全? 如果这不是实际问题,我该如何解决或抑制此 SpotBugs 警告? 我应该遵循哪些最佳实践来避免此类警告? 我尝试过的: 确保为数据绑定正确设置布局文件。 使用 ActivityMainBinding.inflate(getLayoutInflater()) 来膨胀布局并设置内容视图。 任何见解或建议将不胜感激! 从 Spotbugs 报告中删除上述警告。在您的 Spotbugs-exclude-filter.xml 中添加以下代码 <Match> <Source name="~.*/databinding/.*"/> </Match>

回答 1 投票 0

获取java.lang.RuntimeException:无法从绑定实现方法调用观察者方法

请帮助我解决我的问题。 我想从我的数据库获取 LiveData 并使用 recycleview 显示它。 我在存储库中有方法从数据库获取它: 有趣的 getEthTransactions(): LiveDa...

回答 2 投票 0

如何让数据绑定与 RRO 或 SRRO 一起使用

所以android让你使用数据绑定将可观察数据直接绑定到XML,这是有效的,我非常熟悉。 现在的问题是这如何与运行时资源覆盖一起使用? RRO 等...

回答 1 投票 0

找不到符号类ActivityMainBindingImpl

我目前正在学习数据绑定,并且完全按照教程进行操作,但是当我运行应用程序时,我不断收到错误“错误:找不到符号类 ActivityMainBindingImpl”...

回答 1 投票 0

将 AdView 包含在数据绑定中

我正在尝试使用带有数据绑定的 adView 的包含布局。但是,它给我一个错误: java.lang.IllegalStateException:必须在调用 loadAd 之前设置广告尺寸和广告单元 ID。 ...

回答 2 投票 0

DSL 元素“android.dataBinding.enabled”已过时,已替换为“android.buildFeatures.dataBinding”

构建项目时收到以下警告 DSL 元素“android.dataBinding.enabled”已过时,已替换为“android.buildFeatures.dataBinding”。 我正在使用 Android Studio Ca...

回答 10 投票 0

数据绑定:如果属性不为空则设置属性

无法理解...如何仅在变量字段不为空时设置视图的某些属性? 例如 无法理解...如何仅在变量字段不为空时设置视图的某些属性? 例如 <?xml version="1.0" encoding="utf-8"?> <layout xmlns:android="http://schemas.android.com/apk/res/android"> <data> <variable name="item" type="com.test.app.Item" /> </data> <RelativeLayout android:layout_width="match_parent" android:layout_height="60dp" android:orientation="horizontal"> <ImageView android:id="@+id/icon" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_alignParentStart="true" android:layout_centerVertical="true" android:layout_margin="16dp" android:src="@{item.getDrawable()}"/> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_centerVertical="true" android:layout_marginEnd="16dp" android:layout_marginLeft="72dp" android:layout_marginRight="16dp" android:layout_marginStart="72dp" android:layout_toLeftOf="@id/action" android:layout_toStartOf="@id/action" android:orientation="vertical"> <TextView android:id="@+id/text1" android:layout_width="match_parent" android:layout_height="wrap_content" android:singleLine="true" android:textColor="@color/black_87" android:textSize="16sp" android:text="@{item.getTitle()}"/> <TextView android:id="@+id/text2" android:layout_width="match_parent" android:layout_height="wrap_content" android:autoLink="web|email" android:linksClickable="false" android:singleLine="true" android:textColor="@color/black_54" android:textSize="14sp" android:text="@{item.getSubtitle()}"/> </LinearLayout> </RelativeLayout> </layout> Item 的某些字段可以为 null,不必要时我不会调用布局视图的方法。我不会得到NullPointerException。仅当属性不为空时,如何设置属性? 附注对不起英语。 数据绑定通常通过检查 NullPointerException 并分配默认值(例如 null)来避免 NullPointerException,即使 item 本身在示例中为 null。 但是对项目属性进行 null 检查的基本示例: android:text='@{item.title != null ? user.title : ""}' 或者使用“空合并运算符”。空合并运算符 (??) 如果左操作数不为空,则选择左操作数;如果为空,则选择右操作数。 android:text='@{item.title ?? ""}' 请注意,title 或 getTitle 并不重要。 数据绑定不需要检查null值,它会被处理 通过绑定类。 如果您需要检查 null 用于其他目的(例如设置默认值),那么您可以这样使用。 android:text='@{item.gender != null ? item.gender : @string/male}' 或 android:text='@{item.gender ?? @string/male}' 上面两个例子都是一样的。这里 @string/male 为默认值,当 item.gender 为 null 时。 我尝试过这样的事情。 <layout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"> <data> <import type="android.text.TextUtils"/> <variable name="mOrder" type="com.test.app.models.Order" /> </data> <TextView android:id="@+id/mLblSource" android:layout_width="100dp" android:layout_height="40dp" android:layout_marginTop="8dp" android:layout_marginEnd="8dp" android:text='@{TextUtils.isEmpty(mOrder.order_id) ? "- -" : mOrder.order_id}' app:layout_constraintEnd_toEndOf="parent" app:layout_constraintBottom_toBottomOf="parent" /> </layout> android:visibility="@{UserDetails == null ? View.INVISIBLE : View.VISIBLE}"

回答 4 投票 0

通过数据绑定,如何将函数(或 lambda)变量传递给包含的布局

我将设置编辑器操作为edittext。 我的第一个代码是 @BindingAdapter(“onEditorAction”) 有趣的bindOnEditorAction(视图:TextView,事件:()->单位){ view.setOnEditorActionListener ...

回答 3 投票 0

错误:找不到符号View root = inflater.inflate(R.layout.toolbar,parent,false);

我使用数据绑定来连接UI,但是当我重建项目时,出现以下错误: 错误:找不到符号 View root = inflater.inflate(R.layout.toolbar, Parent, false); ...

回答 1 投票 0

如何在Android Studio 3.0.0中使用数据绑定和Kotlin

我刚刚开始使用 Android Studio 3.0.0,但是每次我尝试构建我的项目时都会收到此错误: 错误:以下任务之间的循环依赖关系: :app:compileDebugKotlin +--- :应用程序:

回答 5 投票 0

androidx.databinding.ViewDataBinding.IncludedLayouts 在 ViewDataBinding 中具有受保护的访问权限

这是 Android Studio 中的一个工作项目,今天当我打开项目时,它显示多个 BindingImpl 类的以下错误。每个 BindingImpl 类都有两种类型的错误。 该...

回答 7 投票 0

无法解析“DashboardActivity”中的“inflate”方法

这是一个简单的应用程序。我正在使用 Intent 从 Activity_main.xml 导航到 Activity_dashboard.xml 在 DashboardActivity.java 文件中,我尝试使用数据绑定属性。但我正在...

回答 1 投票 0

databinding.ActivityMainBinding无法在Android项目中导入

我有一个正在运行的 Android Studio 项目,也通过 USB 安装在我的智能手机上,它是一个简单的基本计算器。 现在我必须重写我教授的课程的代码,但 Android Studio 否认了这一点

回答 5 投票 0

类 NumberpickercustomlayoutBinding 是公共的,应在名为 NumberpickercustomlayoutBinding.java 的文件中声明

我已经在我的android studio项目中启用了数据绑定。每当我构建项目时,它都会显示此错误: “错误:类 NumberpickercustomlayoutBinding 是公共的,应该在文件中声明

回答 1 投票 0

如何使用View Binding代替butterknife?

我正在更新一个应用程序。在新程序中,我打算使用视图绑定,因为 butterknife 库不起作用。我的代码如下。我该如何使用新方法? 前面的代码使用

回答 1 投票 0

Android 数据绑定生成的代码中缺少 return 语句

@BindingAdapter( “onTimeViewClick”, “onLocationViewClick”, "onSetDeliveryAddressClick", ) 内部乐趣 setSubHeaderData( onTimeViewClick: (() -> Uni...

回答 1 投票 0

© www.soinside.com 2019 - 2024. All rights reserved.