zoukankan      html  css  js  c++  java
  • Android Studio项目中找不到RecyclerView解决办法

    在build.gradle中添加以下内容就解决了

    dependencies {
        implementation 'com.google.android.material:material:1.0.0'
    }

    如果想创建项目时就默认添加了依赖的话,需要修改项目创建的生成模板

    在Android Studiopluginsandroidlib emplatesgradle-projectsNewAndroidModule ootuild.gradle.ftl添加以上内容即可

    dependencies {
        ${getConfigurationName("compile")} fileTree(dir: 'libs', include: ['*.jar'])
        <#if !improvedTestDeps>
        ${getConfigurationName("androidTestCompile")}('com.android.support.test.espresso:espresso-core:+', {
            exclude group: 'com.android.support', module: 'support-annotations'
        })
        </#if>
        <@kt.addKotlinDependencies />
    <#if isInstantApp||isDynamicFeature>
      <#if isBaseFeature>
        <#if monolithicModuleName?has_content>
        application project(':${monolithicModuleName}')
        <#else>
        // TODO: Add dependency to the main application.
        // application project(':app')
        </#if>
      <#else>
        implementation project(':${baseFeatureName}')
      </#if>
    <#else>
      <@shared.watchProjectDependencies/>
      implementation 'com.google.android.material:material:1.0.0'
    </#if>
    }
  • 相关阅读:
    python基础(str,list,tuple)
    MySQL数据类型概念
    Ubuntu安装sublime
    Ubuntu安装pycharm
    ubuntu安装mysql
    微信小程序注册开发流程
    新开篇
    被玩坏了的题——马的遍历
    一道数学恶心题——小凯的疑惑
    搜索基础题:八皇后
  • 原文地址:https://www.cnblogs.com/luocodes/p/12924971.html
Copyright © 2011-2022 走看看