Emulator: emulator: WARNING: EmulatorService.cpp:448: Cannot find certfile: C:\U

qq_44954861 2020-02-28 12:09:25
Emulator: emulator: WARNING: EmulatorService.cpp:448: Cannot find certfile: C:\Users\zhuangqingze\.android\emulator-grpc.cer security will be disabled.
androidstdio问题求大神解答
...全文
3193 9 打赏 收藏 转发到动态 举报
AI 作业
写回复
用AI写文章
9 条回复
切换为时间正序
请发表友善的回复…
发表回复
kkkkkayla 2020-04-08
  • 打赏
  • 举报
回复
蹲一个解决办法
ljj15574670974 2020-03-09
  • 打赏
  • 举报
回复
同样错误··但是程序运行没问题··
weixin_45788862 2020-03-06
  • 打赏
  • 举报
回复
解决了吗?求方法啊
asmrawsl 2020-03-04
  • 打赏
  • 举报
回复
上楼,找到了能发一下吗
一只小懒虫 2020-03-04
  • 打赏
  • 举报
回复
我也是,但运行到真机上没有问题
luj_1768 2020-03-03
  • 打赏
  • 举报
回复
是仿真软件没有找到一个资源,或者没有获得该资源使用权,或者在测试该资源。
qq_44954861 2020-03-02
  • 打赏
  • 举报
回复
引用 2 楼 asmrawsl的回复:
楼主解决了,求帮助
你解决了吗。。我还没办法
asmrawsl 2020-03-02
  • 打赏
  • 举报
回复
楼主解决了,求帮助
asmrawsl 2020-03-02
  • 打赏
  • 举报
回复
我要解决了就好了
Gamma Manager is based on Gamma Slider control. This control allows to change gamma monitor on most graphic cards. The goal for this project is very simple and control is for VC6 & VC7. The other day I downloaded a N64 emulator but the screen was so black that I did not see anything. I had thus to find this solution to lighten my screen. I know that the tools of my video chart make it possible to change gamma of my screen, but it is faster with this tool. Implementation The implementation of this slider control is very easy. Import GammaSlider.h and GammaSlider.cpp into your project. Include reference to the class control. Add slider control on a form. Use ClassWizard to declare variable name derived from CGammaSlider control. That's it, enjoy! Under the hood Windows provides two APIs GetDeviceGammaRamp/ SetDeviceGammaRamp to perform gamma correction. In fact we need to have a 3 dimensional buffer of 256 WORD to manipulate gamma correction. To change gamma, it is necessary to change the RGB value of each color contained in the buffer by a float factor between 0.0 and 2.0. Example We need to save current gamma for future restore. Collapse Copy CodeWORD m_RampSaved[256*3]; if (!GetDeviceGammaRamp(::GetDC(NULL), m_RampSaved)) { TRACE("WARNING: Cannot initialize DeviceGammaRamp.\n"); }To change gamma, cycle into ramp buffer and change RGB color where Gamma is the float factor. Collapse Copy CodeWORD ramp[256*3]; for( int i=0; i<256; i++ ) { ramp[i+0] = ramp[i+256] = ramp[i+512] = (WORD)min(65535, max(0, pow((i+1) / 256.0, Gamma) * 65535 + 0.5)); } SetDeviceGammaRamp(::GetDC(NULL), ramp);Now to trap slider control message, we need to use a special message ON_WM_HSCROLL_REFLECT() that can provide message to be dispatched into control class itself.

80,472

社区成员

发帖
与我相关
我的任务
社区描述
移动平台 Android
androidandroid-studioandroidx 技术论坛(原bbs)
社区管理员
  • Android
  • yechaoa
  • 失落夏天
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧