导入android.view.View;无法解析符号“视图”

时间:2019-06-17 11:33:22

标签: android android-studio android-layout android-intent

在android studio 3.4.1中,onClick侦听器不起作用,现在显示setOnEditorActionListener

bth.setOnEditorActionListener(new TextView.OnEditorActionListener() {
                @Override
                public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
                    return false;
                }
            });

import android.view.View;
    无法解析符号“视图”

这是一个正在运行的项目,正在显示此错误
如果我运行,它将毫无问题地运行
我从另一个PC打开它,没有像这样的问题。


我正在使用最新的android studio 3.4.1

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    //noinspection GradleCompatible
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support:animated-vector-drawable:28.0.0'
    implementation 'com.android.support:support-v4:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    implementation 'com.android.support:design:28.0.0'
    //firebase
    implementation 'com.google.firebase:firebase-core:16.0.4'
    implementation 'com.crashlytics.sdk.android:crashlytics:2.9.6'
    //slider
    implementation project(':library')
    //glide
    implementation 'com.github.bumptech.glide:glide:4.7.1'
    //recyclerview gravity
    implementation 'com.github.rubensousa:gravitysnaphelper:1.5'
    // rating library
    implementation 'com.github.ome450901:SimpleRatingBar:1.4.2'
    //cardview
    implementation 'com.android.support:cardview-v7:28.0.0'

    //retrofit
    implementation 'com.squareup.retrofit2:retrofit:2.3.0'
    implementation 'com.google.code.gson:gson:2.8.2'
    implementation 'com.squareup.retrofit2:converter-gson:2.3.0'

    implementation 'com.squareup.okhttp3:logging-interceptor:3.8.0'

    //timber-logging interceptor
    implementation 'com.jakewharton.timber:timber:4.7.1'

    //round corner image
    implementation 'com.makeramen:roundedimageview:2.3.0'

    //Html tag remover
    implementation 'org.jsoup:jsoup:1.11.3'

    implementation 'com.google.code.gson:gson:2.6.2'

    //    dots indicator
    implementation 'com.ryanjeffreybrooks:indefinitepagerindicator:1.0.10'
    implementation 'com.tbuonomo.andrui:viewpagerdotsindicator:2.1.2'

    implementation 'com.google.firebase:firebase-messaging:17.6.0'
    annotationProcessor 'com.github.bumptech.glide:compiler:4.7.1'
    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'

    // for unit test
    testImplementation 'com.squareup.okhttp3:mockwebserver:3.12.0'
    testImplementation 'org.mockito:mockito-android:2.7.22'

    implementation 'com.github.sharish:ShimmerRecyclerView:v1.3'


}

我尝试过使用无效现金并重新启动
重新启动pc
重新安装android studio
  但是没有结果
我的团队成员android studio confi
Android Studio 3.2.1
Build#AI-181.5540.7.32.5056338,建于2018年10月9日
JRE:1.8.0_152-release-1136-b06 amd64
JVM:JetBrains s.r.o
的OpenJDK 64位服务器VM
Windows 10 10.0

我的Android Studio

Android Studio 3.4.1
内部版本#AI-183.6156.11.34.5522156,于2019年5月2日构建
JRE:1.8.0_152-release-1343-b01 amd64
JVM:JetBrains s.r.o的OpenJDK 64位服务器VM
Windows 10 10.0


  

该项目来自git

1 个答案:

答案 0 :(得分:1)

对不起,这很晚,我遇到了同样的问题,经过数小时的搜索,我发现View类已损坏,您可以通过在SDK(android 28)中删除平台并安装新的平台来解决此问题,希望这对Goodluck有帮助