关于魅族手机无法获取Surface的问题

news/2024/12/21 10:43:41/

近期在app_process运行进程的问题比较多。

这边有一个小问题,就是对于魅族手机无法getSuface的问题。具体出问题的代码:

ImageReader mImageReader = ImageReader.newInstance(width, height, PixelFormat.RGBA_8888, 2);Surface surface = mImageReader.getSurface();                  System.out.Println(surface)     

这样最终输出的结果是null。

在Android Studio中查看对应的代码,在初始化ImageReader对象的时候surface就由内部函数创建出来,而此时获取的是空的,难免是手机系统中改写内部函数或者出现了什么问题:

protected ImageReader(int width, int height, int format, int maxImages, long usage) {mWidth = width;mHeight = height;mFormat = format;mMaxImages = maxImages;if (width < 1 || height < 1) {throw new IllegalArgumentException("The image dimensions must be positive");}if (mMaxImages < 1) {throw new IllegalArgumentException("Maximum outstanding image count must be at least 1");}if (format == ImageFormat.NV21) {throw new IllegalArgumentException("NV21 format is not supported");}mNumPlanes = ImageUtils.getNumPlanesForFormat(mFormat);nativeInit(new WeakReference<>(this), width, height, format, maxImages, usage);mSurface = nativeGetSurface();mIsReaderValid = true;// Estimate the native buffer allocation size and register it so it gets accounted for// during GC. Note that this doesn't include the buffers required by the buffer queue// itself and the buffers requested by the producer.// Only include memory for 1 buffer, since actually accounting for the memory used is// complex, and 1 buffer is enough for the VM to treat the ImageReader as being of some// size.mEstimatedNativeAllocBytes = ImageUtils.getEstimatedNativeAllocBytes(width, height, format, /*buffer count*/ 1);VMRuntime.getRuntime().registerNativeAllocation(mEstimatedNativeAllocBytes);}

但是在具体的Activity应用中直接获取对应的surface可以输出相应的地址。想必又是app_process的权限或执行中的问题。

此处解决方法为调用:

Looper.prepareMainLooper();

使得整个app_process进程被标记为应用的主looper,这样就可以规避在魅族手机上的问题了。

具体的解释为:

/*** Initialize the current thread as a looper, marking it as an* application's main looper. The main looper for your application* is created by the Android environment, so you should never need* to call this function yourself.  See also: {@link #prepare()}*/public static void prepareMainLooper() {prepare(false);synchronized (Looper.class) {if (sMainLooper != null) {throw new IllegalStateException("The main Looper has already been prepared.");}sMainLooper = myLooper();}}


http://www.ppmy.cn/news/472792.html

相关文章

用MacBook给iPhone充电 断断续续 充不进去电 不停断开连接又恢复 解决方案(两种)USB连接iPhone反复重连解决

文章目录 方法一&#xff1a;直接操作方法二&#xff1a;建立一个双击可执行的脚本文件第一步&#xff1a; 找一个位置新建一个脚本文件第二步让这个文件可运行第三步&#xff1a;解决运行sudo killall要输入密码问题最后&#xff1a;双击运行那个文件即可 方法一&#xff1a;直…

魅族手机app无法彻底卸载问题

使用Flyme系统的同学可能会遇到一个问题&#xff1a; 卸载了某些软件&#xff08;例如通过开发者模式调试安装的应用&#xff09;后&#xff0c;实际这个应用还残留在系统&#xff0c;当你用低版本或者其他签名的apk覆盖安装的时候会提示“安装失败”&#xff0c;要求你卸载后…

魅族手机安装不上APK问题

之前安装过apk-A,后来自己调试代码的时候&#xff0c;继续安装A&#xff0c;发现始终装不上&#xff0c;各种清理垃圾缓存文件等&#xff0c;还是无用&#xff0c;老大还急着催我发版本&#xff0c;这个过程很痛苦。 测试机型&#xff1a;魅蓝note。 描述问题&#xff1a;apk…

魅族手机安装应用apk失败

在开发安卓应用的时候把apk卸载了&#xff0c;后面在开发调试的时候发现那些卸载过的应用怎么样也安装不上了&#xff0c;就提示安装失败&#xff0c;要你卸载重新安装&#xff0c;可是在应用列表里怎么样也找不到那些应用&#xff0c;无论是用360清理还是系统清理都找不到&…

魅族手机打开usb调试后链接不上电脑,解决方法如下

魅族MX系列手机打开usb调试后链接不上电脑&#xff0c; 1.在拨号键盘输入*#*#6961#*#* 2.设置页面->辅助功能 可以看到开发者选项&#xff0c;打开USB调试 3.在电脑端操作如下&#xff1a; 魅族BBS&#xff1a; 请在mac终端执行: $echo 0x2a45 > ~/.android/adb_usb…

【C++】I/O流类库

I/O 数据的输入和输出&#xff08;input/output简写为I/O&#xff09;&#xff0c;对标准输入设备和标准输出设备的输入输出简称为标准I/O。对在外存磁盘上的文件输入输出简称为文件I/O。对内存中指定的字符串存储空间的输入输出简称为串I/O。 流 数据输入输出的过程&#x…

015、数据库管理之用户和权限

用户和权限 认证与赋权连接过程本地连接远程连接查看用户信息创建用户账号创建角色管理用户账户管理角色设置账号密码忘记root密码实验1-用户和角色实验2-授权注意事项 认证与赋权 认证&#xff1a;对用户进行验证 是权限控制的第一步当用户第一次连接数据库时必须进行认证如果…