gnmmdk
gnmmdk
播放本地视频,关闭页面重新进入,无法重新开始播放,会从上次关闭的地方重新开始播放。
APP一启动的时候欢迎界面是采用播放视频的方式,而Im初始化,会造成播放视频的卡顿。通过工具排查到是Chatmanager->ServiceConnection serviceConnection = new ServiceConnection()->onServiceConnected-> mClient.connect(userId, token)方法;建议将mClient.connect(userId, token) 放置于子线程。以下是我的处理方式: if (!TextUtils.isEmpty(userId) && !TextUtils.isEmpty(token)) { workHandler.post(()->{ try { mClient.connect(userId, token); } catch (RemoteException e) { e.printStackTrace(); } mainHandler.post(() -> { for...
如题,清除app数据,A登陆,同步数据的时候,B加A好友,A好友更新的方法不会调用(大概率偶现)。 A好友更新回掉的时候,获取的好友并非是新好友,可能是上个新添加的好友(偶现)。
录制mp3格式的音频,如果我把进程杀死,在重新进入app,还在上个文件继续进行录制,可以吗? 我将文件的路径固定写死,例如“test.mp3",然后将this.os = new FileOutputStream(file),改成了this.os = new FileOutputStream(file,true),以追加的方式进行写文件,结果是文件有变大,但是播放test.mp3 ,一直是一开始录音的结果。
I have a requirement to load images into different folders. What should I do with glide?
As shown below:  I set the environment of ndk(17.2.4988734/20.0.5594570). But the following errors are reported. How can I solve them? 
I compiled with reference to the official steps. https://github.com/MailCore/mailcore2/blob/master/build-android/README.md Use ndk 20.0.5594570 to compile locally, openssl is 1.1.1k, and libsasl 2.1.27. The previous steps are OK until the script of...
Googleplay审核被拒: Issue found: Violation of Device and Network Abuse policy We reviewed SDKs used by your app and found noncompliant version(s) of SDK(s) which contain code to download or install...
你好,下面是我的配置,打包的apk还是png,而没有转成webp。 1、这里是项目下的build.gradle buildscript { repositories { maven { url 'https://dl.bintray.com/zh8637688/maven/' } ... } dependencies { classpath 'com.android.tools.build:gradle:3.6.0' classpath 'cz.gradle.android:webp:0.0.1' } } 2、 下面是app下的build.gradle apply plugin: 'com.android.application' apply plugin: 'cz.webp' android...