gpt4 book ai didi

android-databinding - appbar_scrolling_view_behavior 未在 SwipeRefreshLayout 数据绑定(bind) android 解决

转载 作者:行者123 更新时间:2023-12-04 08:11:24 25 4
gpt4 key购买 nike

我尝试将 app:layout_behavior="@string/appbar_scrolling_view_behavior"添加到 SwipeRefreshLayout 但我不知道为什么我在 XML 布局中没有得到解决,尽管它在运行代码后可以正常工作。这对数据绑定(bind)和 MVVM 有影响吗?


<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools">

<data>

<variable
name="viewModel"
type="ir.basamadazmanovin.heartrate.ui.main.home.HomeViewModel" />
</data>

<androidx.coordinatorlayout.widget.CoordinatorLayout

android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:id="@+id/swipe_refresh_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:onRefreshListener="@{()-> viewModel.onRefresehing()}"
app:refreshing="@{viewModel.isLoading}">


<androidx.recyclerview.widget.RecyclerView
android:id="@+id/fragment_home_recyclerView"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
app:layoutManager="androidx.recyclerview.widget.GridLayoutManager"
app:spanCount="3" />

</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">

<androidx.appcompat.widget.Toolbar
android:id="@+id/fragment_home_toolbar"
style="@style/Toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:subtitleTextColor="@color/material_white"
app:title="@string/app_name"
app:titleTextAppearance="@style/Toolbar.TitleText"
app:titleTextColor="@color/material_white" />
</com.google.android.material.appbar.AppBarLayout>


</androidx.coordinatorlayout.widget.CoordinatorLayout>
</layout>



implementation "com.google.android.material:material:1.0.0"

app:layout_behavior="@string/appbar_scrolling_view_behavior"为红色,IDE 提及“ Unresolved 类 '@string/appbar_scrolling_view_behavior' 少... (Ctrl+F1) 检查信息:验证 Android XML 文件中的资源引用。”

最佳答案

改用这个:

            app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior">

关于android-databinding - appbar_scrolling_view_behavior 未在 SwipeRefreshLayout 数据绑定(bind) android 解决,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55807725/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com