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>
    }
  • 相关阅读:
    create-react-app 修改 webpack output.publicPath
    洛谷 P1282 多米诺骨牌 (01背包)
    UVa 1627
    UVa 1626
    UVa 11584
    UVa 11400
    UVa 116
    UVa 1347 Tour (dp)
    树形背包小结
    数据流图题目一
  • 原文地址:https://www.cnblogs.com/luocodes/p/12924971.html
Copyright © 2011-2022 走看看