gpt4 book ai didi

android - 支持库 23.2.0 导致应用程序崩溃

转载 作者:可可西里 更新时间:2023-11-01 19:05:55 27 4
gpt4 key购买 nike

我的应用程序在支持库 23.1.0 或 23.1.1 上运行良好,但当我开始使用 23.2.0 时,它在启动时崩溃。我使用了五个支持库,但似乎使它崩溃的是这两个:

com.android.support:appcompat-v7:23.2.0

com.android.support:design:23.2.0

我在我的 galaxy nexus (API 17) 上遇到了这个问题,但在我的 Nexus 7 (API 22) 上没有。有谁知道可能是什么问题?这是我的 gradle 文件:

apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.2"

defaultConfig {
applicationId "com.ikarirobotics.aichordfinder"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:support-annotations:23.2.0'
compile "com.android.support:appcompat-v7:23.2.0"
compile 'com.android.support:design:23.2.0'
compile 'com.android.support:cardview-v7:23.2.0'
compile 'com.android.support:recyclerview-v7:23.2.0'
}

我的布局只是一个框架,我在其中放置当前合适的 fragment :

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="HomeActivity"
tools:ignore="MergeRootFrame" />

使用调试器我发现崩溃发生在主 Activity 调用 setContentView() 时:

java.lang.reflect.InvocationTargetException

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.ikarirobotics.aichordfinder/com.ikarirobotics.aichordfinder.HomeActivity}: android.view.InflateException: Binary XML file line #36: Error inflating class android.support.v7.widget.Toolbar

我的 Activity 扩展了 AppCompatActivity 并且我使用了支持操作栏。关于如何解决此问题的任何想法? :(

最佳答案

在 Google 23.2.0 版本中似乎存在一个可绘制突变错误。 See the issue here.在下一个错误修复版本发布之前,恢复到 23.1.1 应该没问题。

关于android - 支持库 23.2.0 导致应用程序崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35618098/

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