Android Studio中的框架代码“无法解析符号”

Android Studio中的框架代码“无法解析符号”,第1张

概述我正在尝试通过AndroidStudio中的库代码进行调试.但是它显示了未解决的符号,即在很多地方都有红线.我的应用程序build.gradle看起来像:applyplugin:'com.android.application'android{compileSdkVersion23buildToolsVersion"23.0.2"defaultConfig{

我正在尝试通过Android Studio中的库代码进行调试.但是它显示了未解决的符号,即在很多地方都有红线.

我的应用程序build.gradle看起来像:

apply plugin: 'com.androID.application'androID {    compileSdkVersion 23    buildToolsversion "23.0.2"    defaultConfig {        applicationID "com.example.kuldeep.customvIEw"        minSdkVersion 16        targetSdkVersion 23        versionCode 1        versionname "1.0"    }    buildTypes {        release {            MinifyEnabled false            proguardfiles getDefaultProguardfile('proguard-androID.txt'), 'proguard-rules.pro'        }    }}dependencIEs {    compile filetree(dir: 'libs', include: ['*.jar'])    testCompile 'junit:junit:4.12'    compile 'com.androID.support:appcompat-v7:23.1.1'}

我的项目build.gradle文件是:

// top-level build file where you can add configuration options common to all sub-projects/modules.buildscript {    repositorIEs {        jcenter()    }    dependencIEs {        classpath 'com.androID.tools.build:gradle:2.0.0-beta2'        // NOTE: Do not place your application dependencIEs here; they belong        // in the indivIDual module build.gradle files    }}allprojects {    repositorIEs {        jcenter()    }}task clean(type: Delete) {    delete rootProject.buildDir}

解决方法:

您正在查看TextVIEw的代码,它是一个AndroID平台类,并不属于您的应用程序.平台类可以引用不属于应用程序可见API的其他“私有包”类. AndroID Studio为您提供了查看这样的平台源代码的功能,因此您可以看到它的工作原理,但是无法对其进行更改,也无法访问SDK中的所有实际已编译类.

简短的故事是正常的和预期的.如果您在自己的应用程序代码(而不是平台类或附加库)中看到此消息,那么您将需要担心一些事情.

总结

以上是内存溢出为你收集整理的Android Studio中的框架代码“无法解析符号”全部内容,希望文章能够帮你解决Android Studio中的框架代码“无法解析符号”所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1120617.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存