Android 开发过程中怪异小问题集合,持续更新

java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.

在使用AlertDialog的show()方法时抛出以上异常:

原因是,App或者Activity使用了Theme.AppCompat.Light.NoActionBar,为AlertDialog单独添加个style即可,style如下:

<style name="myDialog" parent="Theme.AppCompat.Dialog">
    <item name="android:windowNoTitle">true</item>
</style>
复制代码

Dialog初始化时添加:

 AlertDialog.Builder builder
    = new AlertDialog.Builder(new ContextThemeWrapper(this, R.style.myDialog));
复制代码

kotlin.NotImplementedError: An operation is not implemented: not implemented

如果你重写了任何方法:方法内部有TODO标示,去掉TODO。

Outdated Kotlin Runtime,Your version of Kotlin runtime in 'org.jetbrains.kotlin:kotlin-stdlib:1.2.10@jar' library is 1.2.10-release-109 (1.2.10), while plugin version is 1.2.21-release-Studio3.0-1. Runtime library should be updated to avoid compatibility problems.

这里需要手动在你的app.gralde中设置kotlin的版本号,为什么呢?因为我的kotiln的插件以及升级到了1.2.21,而gradle中的配置制定的还是老版本的1.2.10,所以运行时的版本号和当前实际的版本号不匹配,如何查看实际的版本号呢?去Android studio 中的Preferences->plugin,搜索kotlin,就可以看到版本号了,或者根据错误提示,我这里的错误提示告诉我,当前的插件版本号为1.2.21:

buildscript {
    //之前是1.2.10,改成实际的版本号
    ext.kotlin_version = '1.2.21'
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.1'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        classpath 'com.taobao.android:weexplugin-gradle-plugin:1.3'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}
复制代码

Kotlin not configured

早上一开Android Studio 项目就无法编译了,提示 Kotlin not configured ,也没有什么修复的选项,解决方案:

因为项目中,在app的gradle文件里,使用了如下依赖,

implementation 'org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version'
复制代码

把这个依赖后面的-jre8去掉,像这样:

implementation 'org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version'
复制代码

重新编译,错误消失。

gradlew: Permission Denied

这个问题遇到N多次了,每次都要百度一下,就是没记性是不是? 解决:先运行

chmod +x gradlew
复制代码

然后再运行你想要运行的命令即可。

Plugin supporting feature (Facet[kotlin-language]) is currently not installed

这个问题是我的Android Studio升级到 3.1版本,但是Kotlin到Plugin还没有升级,去Android Studio到插件管理去升级一下Kotlin即可,这里就不贴图了。

Could not find the AndroidManifest.xml file

看起来AndroidManifest出了问题,实质原因是:Android Studio升级3.2后,很多配置需要升级,比如gradle,kotlin版本等,导致使用AndoirdAnnotation库的项目出了问题,将AndoirdAnnotation库升级为最新版本(4.5.2)重新编辑即可。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值