当前位置:首页 > IT技术 > 移动平台 > 列表
移动平台 共有 121249 个文章

The Dot Net Application Domain Study

    Application domain is a kind of nature, isolation; the purpose is to enable applications to run the code cannot directly access other applications or funding source. Application domain for the security, reliability, version control, and set uninstall program provides isolation border.     ...[继续阅读]

移动平台

X-Library系列Android应用框架详解

    自2017年初开始,我就致力于Android应用框架的研究,到2018年开始在Github上陆续开源系列作品,再到2019年收获我的第一个star过千的项目,期间我付出了很多,失去了很多,同时也获得了很多。前言为了能够让更多的人了解到我的开源...[继续阅读]

移动平台

css处理ios刘海屏问题

    <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1.0,user-scalable=no,viewport-fit=cover" />viewport-fit 设置为cover.home{    padding-bottom:constant(safe-area-inset-bottom); //兼容IOS < 11.2    padding-bottom:env(safe-area-inset-bottom);//兼容IOS &g...[继续阅读]

移动平台

appium

    from appium import webdriverdesired_caps = { "platformName": "Android", "platformVersion": "7.1.2", "decvicesName": "xiaomi", "appPackage": "com.taobao.taobao", "appActivity": "com.taobao.tao.welcome.Welcome", "noReset": "True"}driver = webdriver.Remote("http://127.0.0.1:4723/wd/hub...[继续阅读]

移动平台

[pyinstaller]PermissionError: [Errno 13] Permission denied:C:UsersxxxAppDataLocalucrtbase.dll

    在使用pyinstaller打包成exe文件时,如果出现下面的问题:[pyinstaller]PermissionError: [Errno 13] Permission denied:C:UsersxxxAppDataLocalucrtbase.dll则可以先查看该路径下是否存在ucrtbase.dll这个文件,因为很有可能因为不存在该文件导致该问题的。如果...[继续阅读]

移动平台

苹果Mac最灵活的文件共享工具:????Dropshare

    Dropshare 是一款将 Mac 本地文件快速上传到自建的远程服务器并生成文件访问地址方便他人访问,Dropshare在此基础上还提供了自动上传本机屏幕截图、共享文件自动生成 URL 短地址、设置访问密码、本机删除服务器上传文件、从剪切板...[继续阅读]

移动平台

【Android】Android适配器之ArrayAdapter、SimpleAdapter和BaseAdapter的简单用法

     ArrayAdapter、SimpleAdapter和BaseAdapter的一些简短代码片段,希望用时方便想起其用法。1.ArrayAdapter 只可以简单的显示一行文本代码片段:  ArrayAdapter<String> adapter = new ArrayAdapter<String>(                  this,    ...[继续阅读]

移动平台

Java SpringBoot手动加载指定application.properties

    封装方法public class Application { public static void main(String[] args) throws IOException { FileInputStream inputStream = new FileInputStream(new File(System.getProperty("user.dir")) + "configapplication.properties"); Properties properties = new Properties(); properties...[继续阅读]

移动平台

苹果 Mac 上不显示外置硬盘?9 个必须尝试的修复方法

    外置硬盘是在本地保存千兆字节数据的完美存储解决方案之一。您只需将驱动器插入 Mac 并在桌面或 Finder 上访问它们。但是,当外部驱动器无法安装并出现时,事情就会出现问题。别担心!小编收集了最佳修复程序,以消除外置硬...[继续阅读]

移动平台

Android开发——四大组件之Activity

    <1>关于Activity和AndroidManifest我们AS项目里的AndroidManifest.xml文件其实就是一个清单文件,用于描述我们的项目内容其中包含了一些Application、activity、包名等信息,还包括一些权限的声明(例如在数据存储时使用SD卡读写的权限声明...[继续阅读]

移动平台