为什么我收到'无法解决符号'的错误?

时间:2016-12-02 04:13:35

标签: java android oop android-studio

我看不出为什么我收到这个错误?我确定我的Gradel文件和java类达到了标准。下面发布的class和gradel文件。另外,我的XML文件没有错误。

我已经做了什么:

档案>无效的缓存/重新启动

构建>清洁项目

构建>重建项目 重新启动计算机

这些是建议在整个网络上做的事情,但没有一个有用。

SplashActivity.java

package com.apress.gerber.currencies;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;

public class SplashActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    this.requestWindowFeature(Window.FEATURE_NO_TITLE);
 // Letter "R" is red 
    setContentView(R.layout.activity_splash2); 
   }
}

build.gradel

apply plugin: 'com.android.application'

android {
       compileSdkVersion 25
       buildToolsVersion '25.0.1'
       useLibrary 'org.apache.http.legacy' // newly added
  defaultConfig {
    applicationId "com.apress.gerber.currencies"
    minSdkVersion 9
    targetSdkVersion 25
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
       }
     }
  }

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
// newly added
compile 'org.apache.httpcomponents:httpclient-android:4.3.5.1'
// newly added
provided 'org.jbundle.util.osgi.wrapped:org.jbundle.util.osgi.wrapped.org.apache.http.client:<version number>'
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
    exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.0.1'
testCompile 'junit:junit:4.12'
}

1 个答案:

答案 0 :(得分:0)

导入这些类

import android.view.Window;
import com.apress.gerber.currencies.R;

如果R仍然无法解析,那么您的资源中就会出现错误,而不仅仅是XML。

这里有很多答案"cannot resolve symbol R" in Android Studio