07 2021 档案

.net framework 3.5 安装命令
摘要:命令:dism.exe /online /enable-feature /featurename:netfx3 /all 阅读全文

posted @ 2021-07-28 10:55 空明流光 阅读(745) 评论(0) 推荐(0) 编辑

android 调用相机
摘要:调用相机: Intent intent = new Intent(MediaStore.ActionImageCapture); StartActivityForResult(intent, 13); protected override void OnActivityResult(int requ 阅读全文

posted @ 2021-07-23 17:52 空明流光 阅读(181) 评论(0) 推荐(0) 编辑

Xamarin Android 定时刷新UI
摘要:var timer = new Timer(new TimerCallback(delegate (object state) { this.RunOnUiThread(() => { var textureQRCodeScan = FindViewById<TextureView>(Resourc 阅读全文

posted @ 2021-07-23 16:18 空明流光 阅读(416) 评论(0) 推荐(0) 编辑

Xamarin 动态申请 android 权限
摘要:if (Build.VERSION.SdkInt >= Android.OS.BuildVersionCodes.M) { var permission = Permission.ReadExternalStorage; if (ContextCompat.CheckSelfPermission(t 阅读全文

posted @ 2021-07-22 18:00 空明流光 阅读(608) 评论(0) 推荐(0) 编辑

C# 生成和识别二维码
摘要:本来认为这功能在网上一搜一大堆,结果确实如此。但没有一个能用的,给一个微信一码通二维码,全都识别不了。 要么就是要收费,收个毛线,这东西都要收费,以后程序员写个软件岂不还没写就亏本了。 于是乎一顿搜索,经测试代码稳定,无论是纯二维码还是复杂图像嵌入二维码,均可识别。 第一步:Install-Pack 阅读全文

posted @ 2021-07-21 16:31 空明流光 阅读(920) 评论(0) 推荐(0) 编辑

centos 7.5 设置自定义程序 开机自启
摘要:这里以我自定义的程序为例,服务名为p2psocket,可执行程序为/root/linux-x64-p2psocket/P2PSocket.StartUp 1.将程序注册为服务,创建文件/lib/systemd/system/p2psocket.service,设置执行权限为644,内容如下: [Un 阅读全文

posted @ 2021-07-16 16:33 空明流光 阅读(216) 评论(0) 推荐(0) 编辑

Android Studio 4.1/4.2 模拟器启动报错 The emulator process for AVD xxx was killed.
摘要:网上讲的什么各种方法均无效,windows易升升级到windows10最新版,安装各种虚拟监控服务(有没有用不知道,反正都做了,移动avd目录的那个别信),就差最后一步: Create the file ~/.android/advancedFeatures.ini (for Windows use 阅读全文

posted @ 2021-07-09 17:53 空明流光 阅读(456) 评论(0) 推荐(0) 编辑

导航