尝试将此文件添加到我的应用中,我收到以下错误:
android.view.InflateException: Binary XML file line #25: Binary XML file line #3: Error inflating class android.support.v7.widget.ContentFrameLayout
这是文件:
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android">
<android.support.v7.widget.ContentFrameLayout android:id="@id/action_bar_activity_content" android:layout_width="match_parent" android:layout_height="match_parent" android:foreground="?attr/toolbarId" android:foregroundGravity="top|fill_horizontal"></android.support.v7.widget.ContentFrameLayout>
</merge>
的build.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "24.0.0"
defaultConfig {
applicationId "com.example.joestox.fakeaddwevibe"
minSdkVersion 15
targetSdkVersion 24
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.0.0'
}
我是否需要向我的依赖项添加android.support.v7.widget
之类的内容?我该怎么做呢?
答案 0 :(得分:4)
我怀疑ContentFrameLayout
是供内部使用的。 Looking at its source它似乎并没有做任何事情,整个类都标记为@hide
,这可能是您收到错误的原因(假设您已经在应用程序构建gradle中添加了依赖项)。虽然我确信这个类有appcompat库的一些内部用途。对于应用程序开发人员,我们应该坚持使用常规FrameLayout
。