0

我使用 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' }
4

1 回答 1

0

更改这些东西.. 在应用程序级别的 gradle build 中更改这些东西..

    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);
于 2018-07-09T12:03:36.077 回答