当我使用已弃用的api时,android studio 3.1.3不显示任何错误

时间:2018-07-09 11:57:15

标签: android android-studio-3.1.3

我使用android studio 3.1.3。当我编写不推荐使用的方法时(例如:

  Spanned a= Html.fromHtml("<b>hello</b>");

android studio代码编辑器未显示任何错误或建议,并且未突出显示已弃用的方法(例如android studio 2.3)!当我重建(编译)项目时,这给了我下面的错误。

  

... \ MainActivity.java:       使用或覆盖已弃用的API。       使用-Xlint:deprecation重新编译以获取详细信息

请帮助我。

我的build.gradle(Module:app):

apply plugin: 'com.android.application'

android {
    compileSdkVersion 27
    defaultConfig {
        applicationId "com.example.my.mynewapplication"
        minSdkVersion 15
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    } }

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:27.1.1'
    implementation 'com.android.support.constraint:constraint-layout:1.1.2'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' }

1 个答案:

答案 0 :(得分:0)

改变这个东西。 在应用程序级别gradle构建中更改此设置。

    compileSdkVersion 27   // hear you can define any sdk.

以及根据27的所有依赖关系。删除28个alpha

    implementation 'com.android.support:appcompat-v7:27.1.1' 

我尝试了这段代码,并且将其定义为活动中的onCreate方法。

        TextView textView=findViewById(R.id.textView);
    Spanned a= Html.fromHtml("<b>hello</b>");
    textView.setText(a);