ppx icon indicating copy to clipboard operation
ppx copied to clipboard

皮皮虾助手

Results 15 ppx issues
Sort by recently updated
recently updated
newest added

机型 oneplus 9rt lsposed 1.72 皮皮虾 3.91 助手 1.98 关闭去水印后可以正常下载带水印的视频

你好,使用xpoed tool将皮皮虾助手直接植入app,实现免Xposed 、root使用。成功了,但是软件会提示非官方版本,所以你能不能把这个屏蔽了呢 ![Screenshot_20210908_104506_com sup android superb](https://user-images.githubusercontent.com/32011484/132438275-abab7be8-9214-4dce-80f7-a74c5b3d3b17.jpg)

嗯,是的,希望加上,比较方便

https://user-images.githubusercontent.com/50996293/150048716-919ea9cd-52f3-48bc-81a9-d50a5d782921.mp4

bug

如题所示,希望增加一个不要让它隐藏状态栏的功能,让它一直显示着状态栏,这样可以看到电量的多少和时间。我怕我说不清,具体就是从图1到图2那样的变化。 ![Screenshot_2021-10-29-16-28-36-613_com sup android superb](https://user-images.githubusercontent.com/32454224/139402540-e2da9244-4e90-4f76-bf05-eee6beecf1fe.jpg) ![Screenshot_2021-10-29-16-28-42-297_com sup android superb](https://user-images.githubusercontent.com/32454224/139402561-38115b0c-e4ea-4762-9619-7214e424f62e.jpg)

代码里获取的几个图片地址包括拼接的那个地址有时候均是webp,导致下载后在本地是webp格式 解决方法也很简单,直接下载原图,是常见的格式直接保存,如果是webp静态图直接BitmapFactory就可以转png输出,webp动图可以用glide的一个webp扩展库解码成一帧一帧的Bitmap,再用glide的gif库生成gif文件输出 webp动图相关 依赖 //gifencoder implementation 'com.github.bumptech.glide:gifencoder-integration:4.9.0' // webpdecoder implementation "com.github.zjupure:webpdecoder:2.3.4.13.2" 代码 Glide glide = Glide.get(this); GifBitmapProvider gifBitmapProvider = new GifBitmapProvider(glide.getBitmapPool(), glide.getArrayPool()); byte[] bytes = FileIOUtils.readFile2BytesByMap(webpImgFilePath); WebpHeaderParser.WebpImageType type = WebpHeaderParser.getType(bytes);...