导入没有问题,但活动会出现问题。当我extends
从Activity
到时,ActionBarActivity
我遇到了很多问题......
为什么extends ActionBarActivity
我没有更多的方法,如findViewById()
orgetFragmentManager()
等。我该如何解决?
导入没有问题,但活动会出现问题。当我extends
从Activity
到时,ActionBarActivity
我遇到了很多问题......
为什么extends ActionBarActivity
我没有更多的方法,如findViewById()
orgetFragmentManager()
等。我该如何解决?
将以下行添加到您的 build.gradle 中。
dependencies {
// other dependencies
compile "com.android.support:appcompat-v7:18.0.+"
}
您的 build.gradle 文件应如下所示:
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.6.+'
}
}
apply plugin: 'android'
repositories {
mavenCentral()
}
android {
compileSdkVersion 18
buildToolsVersion "18.1.1"
defaultConfig {
minSdkVersion 7
targetSdkVersion 19
}
}
dependencies {
compile 'com.android.support:appcompat-v7:+'
}