df13954

Results 51 issues of df13954

1,当我把某个div的宽度设置450px的时候,手机上面出现左右可以滑动了 2,当我把它宽度设置300px的时候,宽度没有拉满屏幕的宽度 3,我不熟悉这个适配怎么做的,也不熟悉web,这个宽度怎么可以做到自适应,还是说有一个最大的宽度标准?

Fatal Exception: java.lang.RuntimeException android.os.DeadSystemException android.app.ApplicationPackageManager.resolveActivityAsUser (ApplicationPackageManager.java:806) android.view.View.requestLayout (View.java:19996) cn.bingoogolapple.bgabanner.BGABanner.switchToPoint (SourceFile:697) cn.bingoogolapple.bgabanner.BGABanner.onPageSelected (SourceFile:772) android.support.v4.view.ViewPager.dispatchOnPageSelected (SourceFile:1941) android.support.v4.view.ViewPager.onTouchEvent (SourceFile:2257) cn.bingoogolapple.bgabanner.BGAViewPager.onTouchEvent (SourceFile:131) android.view.View.dispatchTouchEvent (View.java:10062) android.view.ViewGroup.dispatchTouchEvent (ViewGroup.java:2422) cn.bingoogolapple.bgabanner.BGABanner.dispatchTouchEvent (SourceFile:597) android.view.ViewGroup.dispatchTransformedTouchEvent (ViewGroup.java:2783) com.android.internal.os.ZygoteInit.main (ZygoteInit.java:924) Caused by...

app是下架了吗大佬~

``` a.a.c.f: java.lang.OutOfMemoryError: Failed to allocate a 25958412 byte allocation with 15123712 free bytes and 14MB until OOM at a.a.j.a.onError(RxJavaPlugins.java:349) at a.a.f.g.m.run(ScheduledRunnable.java:64) at a.a.f.g.m.call(ScheduledRunnable.java:52) at java.util.concurrent.FutureTask.run(FutureTask.java:237) at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:154) at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:269)...

背景: Android使用webview加载egret游戏,游戏里面有背景音乐的。 1:这个时候,如果我的app点击home,进入后台,这个时候游戏还在继续,声音还在播放中。 2:我在生命周期pause或者其他方法中,如何屏蔽游戏的声音,后者说,我如何去关掉游戏的声音呢。 3:如能在进入后台的时候,关闭声音,当我从后台恢复打开app的时候,这个又怎么去恢复声音的播放呢? 我这边是Android开发,想知道白鹭这边,有没有提供关闭和恢复声音的api。如果有,可以告知吗,非常感谢

环境: 二维码提供下载的apk,2022年02月21日10:14:38 安装到pixel3,Android 10中。 点击glide加载图片。 大图打开后,下来缩小,返回前一个页面。状态栏闪一下白色。 录屏地址:https://gitee.com/dong_rong/android_anr_repo/raw/master/video/Movies/ScreenRecorder/2022_02_21_09_43_53.mp4

Error:Execution failed for task ':NewHouseModule:processDebugManifest'. > Manifest merger failed : Attribute application@label value=(@string/new_house_app_name) from AndroidManifest.xml:8:9-51 is also present at [com.github.BaronZ88:Retrofit2-FastJson-Converter:1.2] AndroidManifest.xml:13:9-41 value=(@string/app_name). Suggestion: add 'tools:replace="android:label"' to element at AndroidManifest.xml:5:5-20:19 to...

ios 13.6,iPhone11,拉master代码。 查看大图状态栏异常,状态栏颜色白色了 ![41649211054_ pic](https://user-images.githubusercontent.com/18607031/161882127-dd26d7a8-1222-492c-8a13-fb02af8a9736.jpg)

一个act中使用了rich text。接口请求到内容之后(html中包含了像素很高的图片,例如2000*2000), ``` RichText.from(getContent()).bind(this).into(view); ``` 如果这个页面,一直下拉刷新,重复调用接口,重复上面的into。内存一直飙升。知道native heap 满。 退出act RichText.clear(this);内存监控也不会回收。一直保持。没有回收。 在每次设置数据之前主动调用 ``` RichText.recycle(); RichText.clear(this); System.gc(); ``` 这样也是无效的。 内存一直在高位。目前看到回收的方法是recycle,clear。