Android

2017年11月10日10:08:18

Glide加载大图出现拉伸问题.
首先将自己的imageview的scaleType属性设置为centerCrop,然后使用glide的时候如下设置

Glide.with(context).load(url).asBitmap().centerCrop().placeholder(R.drawable.defaultpic).into(imageview);

2018年1月9日16:06:56

Glide V4依赖出错


Glide.png

提示Support资源找不到,只需要升级一下Support版本就可以,最好为26以上

implementation 'com.android.support:appcompat-v7:27+'
implementation 'com.android.support:design:27.+'

2018年7月19日14:32:37

Configuration 'compile' is obsolete and has been replaced with 'implementation'.
It will be removed at the end of 2018
提示将compile替换为implementation,并且compile将于2018年底进行删除

2018年7月19日14:38:08

The SourceSet 'instrumentTest' is not recognized by the Android Gradle Plugin.
instrumentTest在更新之后已经过时,用androidTest替换即可

2018年7月19日14:48:39

DSL element 'DexOptions.incremental' is obsolete and will be removed at the end of 2018
将incremental = true删除即可.

2018年8月9日13:52:22

Toolbar内部左侧始终有一段空白,无法填充


image.png

在toolbar布局中加入如下代码即可解决

app:contentInsetLeft="0dp"
app:contentInsetStart="0dp"

2018年8月18日10:34:24

自定义对话框顶部始终有一个白边,底部线性布局嵌套TextView始终无圆角

白边问题ImageView添加属性
android:adjustViewBounds="true"

无圆角问题原因:把圆角shape文件设置给了线性布局,修改设置给textview后正常

2018年8月18日11:20:27

OPPO手机拍照成功之后点击确定没反应,经过核查发现是保存图片的路径问题导致的,将路径改为如下后正常

Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DCIM).getAbsolutePath()

2018年8月23日11:53:43

Android嵌套H5,通过javascript调用H5无法显示内容,将H5的UL改为div包裹UL恢复正常

2018年10月11日16:20:29

打包混淆之后EventBus报错,在混淆文件中加入如下代码正常

-keepattributes *Annotation*
-keepclassmembers class ** {
    @org.greenrobot.eventbus.Subscribe <methods>;
}
-keep enum org.greenrobot.eventbus.ThreadMode { *; }

# Only required if you use AsyncExecutor
-keepclassmembers class * extends org.greenrobot.eventbus.util.ThrowableFailureEvent {
    <init>(java.lang.Throwable);
}

2018年10月19日09:14:51

尝试使用Dagger2时报错

Could not find method apt() for arguments [com.google.dagger:dagger-compiler:2.6] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.

将依赖中的apt...改为annotationProcessor...

参考资料 : With android gradle plugin 2.2.0 release, the android-apt plugin is no longer needed for annotation processing. The apt function was included in the latest android gradle plugin which called annotationProcessor.

compile 'com.google.dagger:dagger:2.6'
annotationProcessor "com.google.dagger:dagger-compiler:2.6"

2018年10月31日11:15:38

Android ContextThemeWrapper cannot be cast to android.app.Activity
加入以下代码:

private static Activity checkActivity(Context context) {
    if (context == null){
        return null;
    } else if (context instanceof Activity){
        return (Activity)context ;
    } else if (context instanceof ContextWrapper){
        return checkActivity(((ContextWrapper)context).getBaseContext());
    }
    return null;
}

调用时:

TextView tvView = new TextView(checkActivity(getContext()));

2018年11月6日09:14:13

去除腾讯X5浏览器的滑动块(原生去除滑动块方法对X5无效)

if (infoWebView.getX5WebViewExtension() != null) {
            infoWebView.getX5WebViewExtension().setHorizontalScrollBarEnabled(false);//水平不显示滚动按钮
            infoWebView.getX5WebViewExtension().setVerticalScrollBarEnabled(false); //垂直不显示滚动按钮
        }

2018年11月17日14:04:17

判断当前处于活动的Activity是否包含指定Activity

/**
     * 判断MainActivity是否活动
     *
     * @param activityName 要判断Activity,最好传全包名
     * @return boolean
     */
    private boolean isMainActivityAlive(Context context, String activityName) {
        ActivityManager am = (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE);
        List<ActivityManager.RunningTaskInfo> list = am.getRunningTasks(100);
        for (ActivityManager.RunningTaskInfo info : list) {
            // 注意这里的 topActivity 包含 packageName和className,可以打印出来看看
            if (info.topActivity.toString().contains(activityName) || info.baseActivity.toString().contains(activityName)) {
                LogUtils.e(TAG, info.topActivity.getPackageName() + " info.baseActivity.getPackageName()=" + info.baseActivity.getPackageName());
                return true;
            }
        }
        return false;
    }

2018年11月23日14:30:35

AS项目编译报错

Configuration on demand is not supported by the current version of the Android Gradle plugin since you are using Gradle version 4.6 or above. Suggestion: disable configuration on demand by setting org.gradle.configureondemand=false in your gradle.properties file or use a Gradle version less than 4.6.

在gradle-wrapper.properties 文件,修改distributionUrl 参数,低于4.6即可

2018年12月18日11:31:06
Android P强制接受HTTP:
新建文件 res -> xml ->network_security_config.xml,并填写如下内容:

<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
    <base-config cleartextTrafficPermitted="true">
        <trust-anchors>
            <certificates src="system" />
        </trust-anchors>
    </base-config>
</network-security-config>

在AndroidManifest ->application节点加入:

android:networkSecurityConfig="@xml/network_security_config"

2018年12月18日11:33:57

Android P继续使用HTTPClient
给老项目升级到P,项目报错:

java.lang.RuntimeException: Stub!
  at org.apache.http.message.BasicNameValuePair.<init>(BasicNameValuePair.java:6)

在Android P之后,org.apache.http.legacy 库将从 bootclasspath 中删除,所以无法继续使用.官方文档:

Apache HTTP 客户端弃用影响采用非标准 ClassLoader 的应用

小声BB(还能怎么办,强制接受吧......)
继续使用方法:在AndroidManifest ->application节点内加入:

<uses-library
            android:name="org.apache.http.legacy"
            android:required="false"/>

2019年1月10日11:11:58

报错 : Manifest merger failed with multiple errors, see logs

解决方法:切换到Terminal,运行如下命令后即可看到详细错误

gradlew processDebugManifest --stacktrace
image.png

2019年2月25日09:13:49

ERROR: Failed to resolve: support-media-compat

原因:莫名其妙的报错,莫名其妙的被墙,莫名其妙的糟心
解决方法:
项目build文件中注释:

 mavenCentral()
 google()
 jcenter()

换为

 maven { url 'https://maven.aliyun.com/repository/google' }
 maven { url 'https://maven.aliyun.com/repository/jcenter' }
 maven { url 'http://maven.aliyun.com/nexus/content/groups/public' } 

最后应为如下:

buildscript {
    repositories {
//        jcenter()
//        mavenCentral()
//        google()
        maven { url 'https://maven.aliyun.com/repository/google' }
        maven { url 'https://maven.aliyun.com/repository/jcenter' }
        maven { url 'http://maven.aliyun.com/nexus/content/groups/public' }
    }
    dependencies {
      ...
    }
}

allprojects {
    repositories {
//        mavenCentral()
//        jcenter()
//        google()
        maven { url 'https://maven.aliyun.com/repository/google' }
        maven { url 'https://maven.aliyun.com/repository/jcenter' }
        maven { url 'http://maven.aliyun.com/nexus/content/groups/public' }
        ...
    }
}

2019年4月15日15:26:46

EditText的clearFocus()方法无效
通过查看源码发现,clearFocus并不是真的清除焦点,而是在整个布局中遍历获取focusInTouchMode为true的View,如果EditText为第一个,就又重新设置了焦点,陷入了死循环,所以才会看上去无效,解决方法只需要将EditText之前的view设置如下属性

android:focusableInTouchMode="true"

2019年7月26日15:26:45

AndroidManifast警告GoogleAppIndexingWarning
App is not indexable by Google Search


解决方法:
按照提示在AndroidManifest.xml文件中的至少一个页面中增加如下intent-filter:

<action android:name="android.intent.action.VIEW" />

或直接进行Alt+Enter忽略

2019年10月22日14:55:29

从后台切换程序后,页面重新加载报错

java.lang.IllegalArgumentException: Wrong state class, expecting View State but received class android.support.v7.widget.Toolbar$SavedState instead. This usually happens when two views of different type have the same id in the same hierarchy. This view's id is id/toolbar. Make sure other views do not use the same id

报错是说页面重新加载时,toolbar的id是重复的,百思不得其解,百度发现一些相同的问题,无解,后偶然间发现,布局中include的toolbar的id和toolbar.xml中的toolbar的id都是toolbar,将内部的toolbar的id进行修改后,解决问题.


image.png
 <include
            android:id="@+id/toolbar"
            layout="@layout/toolbar"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            binding:toolbarViewModel="@{mainViewModel.toolbarViewModel}" />
  <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="0dp"
            android:layout_height="49dp"
            android:minHeight="?attr/actionBarSize"
            android:theme="?attr/actionBarTheme"
            app:contentInsetLeft="0dp"
            app:contentInsetStart="0dp"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintHorizontal_bias="0.0"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent" />

上边的id重复了,导致的问题

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342

推荐阅读更多精彩内容