当前位置: 首页 > 知识库问答 >
问题:

迁移到Androidx后xml文件中的未知属性

高琛
2023-03-14

我通过重构迁移到AndroidX

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:fitsSystemWindows="true" (Unknown)
    android:clipToPadding="true" (Unknown)
    android:scrollbars="none" (Unknown)

<LinearLayout
    android:paddingTop="20dp" (Unknown)
    android:paddingBottom="20dp" (Unknown)

    <TextView
        android:layout_marginTop="20dp" (Unknown)
        android:paddingStart="20dp" (Unknown)
        android:paddingEnd="20dp" (Unknown)
        android:text="Some Text" (Unknown)
android.enableJetifier=true
android.useAndroidX=true
android {
    compileSdkVersion 29
    buildToolsVersion '29.0.2'
    defaultConfig {

        minSdkVersion 21
        targetSdkVersion 29

我试过了

  • 将项目与分级文件同步
  • 我同步了Build.Gradle
  • 使缓存无效/重新启动
  • 清理项目,然后重建项目
  • 我删除了.idea文件夹,然后删除并重新生成项目

什么都不起作用

共有1个答案

巫马星雨
2023-03-14

请尝试清除以下缓存文件夹以更改重新下载库

c:\Users\<user>\.gradle\caches\
c:\Users\<user>\.AndroidStudio3.x\system\caches\

资料来源:1,2

 类似资料:
  • 我正试图迁移到AndroidX,我们在我们的项目中使用这个库。然而,这目前在我们的项目中引起了一个问题: 无法解析对“module @ build type/compile class path”的依赖项:无法使用转换JetifyTransform转换文件“localytics-1.3.0.aar”以匹配属性{artifactType=processed-aar} 删除库会使此问题消失。在这个库被

  • 在生成中更新依赖项后。gradle(模块:app)在gradle脚本中,所有由R定义的布局、字符串和所有引用都不可用。我在模块应用程序中有以下代码: 在搜索项目时,通过项目资源管理器,项目似乎不再有R文件。

  • 本文向大家介绍Android AndroidX的迁移,包括了Android AndroidX的迁移的使用技巧和注意事项,需要的朋友参考一下 1. 前言 AndroidX replaces the original support library APIs with packages in the androidx namespace. Only the package and Maven arti

  • 我刚刚通过Android Studio菜单选项Refactor->Refactor to androidx迁移到androidx 我得到以下错误: Android.View.InflateException:二进制XML文件行#2:二进制XML文件行#2:膨胀类AndroidX.ConstraintLayout.ConstraintLayout时出错 知道吗? 堆栈跟踪:

  • 当我尝试启动我的应用程序时,我的 MainActivity 在 oncreate() 方法中的“setContentView(R.layout.activity_main);” 中抛出此错误: 这个错误出现在迁移到androidx之后,经过进一步检查,我注意到Bottomnavigationview类中的导入语句已经过时(没有androidx格式,而是旧格式)。Bottomnavigationvi