gpt4 book ai didi

java - android中突然项目文件找不到jdk

转载 作者:行者123 更新时间:2023-12-01 09:54:01 25 4
gpt4 key购买 nike

我的项目直到昨晚都运行良好。今天,当我打开 stdio 时,突然出现错误,说找不到 LayoutInflator,找不到 Activity 类,并且我们在导入时总是看到的每个类都不起作用。当我尝试运行应用程序时,它正在打开“编辑配置”窗口。我还设置了 jdk 和 stdio sdk 路径,并在 list 中声明了所有配置的 Activity ,但我每次都丢失了。我正在附上我的 list 和构建文件。 list 代码

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.shubham.sharma.bunktrackingapp" >

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="TeacherPanel.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".CoordinatorPanel.MainActivity"
android:label="@string/app_name" ></activity>



</application>

</manifest>

我的 gradle 代码在这里

apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.3"

defaultConfig {
applicationId "com.shubham.sharma.bunktrackingapp"
minSdkVersion 15
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'])

compile('com.mikepenz:materialdrawer:4.6.4@aar') {
transitive = true

}
compile 'com.android.support:multidex:1.0.1'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:cardview-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
compile 'com.android.support:support-v4:23.1.1'
compile 'com.github.satyan:sugar:1.4'
compile 'com.squareup.retrofit:retrofit:2.0.0-beta2'
compile 'com.squareup.retrofit:converter-gson:2.0.0-beta2'
compile 'com.hannesdorfmann.mosby:mvp:2.0.0'
compile 'com.jakewharton:butterknife:7.0.1'
compile 'com.pnikosis:materialish-progress:1.7'
compile 'com.jakewharton.timber:timber:4.1.0'
compile 'de.greenrobot:eventbus:3.0.0-beta1'
compile files('libs/apache-httpcomponents-httpcore.jar')
compile files('libs/apache-httpcomponents-httpclient.jar')


}

最佳答案

如果jdk有问题,那么ff Ubuntu - do -> sudo apt-get install openjdk-8-jdk -这里首先检查你有什么版本的java,如果它是Windows,则在环境变量中将你的jdk/jre设置为java 8 For这两个步骤你将从谷歌获得很多链接。如果仍然没有解决最后一个选项,那么尝试重做最后一步,因为发生了这个错误。尝试创建另一个android项目,看看你在java文件中得到相同的错误,如果不,那么它不是 jdk 问题,这与您的项目 R 文件有关,因为您的 xml 文件中存在一些错误。尝试清理/重新构建项目。

关于java - android中突然项目文件找不到jdk,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37383110/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com