我是在 Android Studio 上开发的新手,我的应用程序运行良好,直到工作室突然退出,之后项目找不到任何导入的库(以星号表示),例如Uri
,等到AppCompatActivity
我的AppCompatActivity
班级(我使用的是 Android 2.1.2)
import android.net.*Uri*;
import android.os.*Bundle*;
import android.support.v7.*;
import android.util.*Log*;
import android.view.*View*;
import android.widget.*AdapterView*;
import android.widget.*ListView*;
import com.google.android.gms.appindexing.*Action*;
import com.google.android.gms.appindexing.*AppIndex*;
import com.google.android.gms.common.api.*GoogleApiClient*;
import org.xmlpull.v1.*XmlPullParser*;
import org.xmlpull.v1.*XmlPullParserException*;
import org.xmlpull.v1.*XmlPullParserFactory*;
import java.io.*IOException*;
import java.io.*InputStream*;
import java.util.*ArrayList*;
import java.util.*List*;
public class Menu extends android.support.v7.app.*AppCompatActivity* {
我到目前为止所尝试的:
- 检查项目结构 -> 应用程序 -> 依赖项
尝试对库进行排序
com.android.support:appcompat-v7:24.2.1 com.google.android.gms:play-services-appindexing:8.1.0 之前 junit:junit:4.12
检查 build.gradle 并添加以上 2 个依赖项
- 清洁项目
- 构建 APK
- 重建项目(多次)
PS:com.google.android ...导入是使用onstart和onstop覆盖自动生成的(不知道为什么)
// ATTENTION: This was auto-generated to implement the App Indexing API.
// See https://g.co/AppIndexing/AndroidStudio for more information.
client = new GoogleApiClient.Builder(this).addApi(AppIndex.API).build();
PS:我的 Android Studio 安装在 C:/Programfiles 中,我的项目保存在 AndroidStudioProjects 文件夹下的不同位置