當前位置:首頁 > 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ù)閱讀]

移動平臺

X-Library系列Android應用框架詳解

    自2017年初開始,我就致力于Android應用框架的研究,到2018年開始在Github上陸續(xù)開源系列作品,再到2019年收獲我的第一個star過千的項目,期間我付出了很多,失去了很多,同時也獲得了很多。前言為了能夠讓更多的人了解到我的開源...[繼續(xù)閱讀]

移動平臺

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...[繼續(xù)閱讀]

移動平臺

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...[繼續(xù)閱讀]

移動平臺

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

    在使用pyinstaller打包成exe文件時,如果出現(xiàn)下面的問題:[pyinstaller]PermissionError: [Errno 13] Permission denied:C:UsersxxxAppDataLocalucrtbase.dll則可以先查看該路徑下是否存在ucrtbase.dll這個文件,因為很有可能因為不存在該文件導致該問題的。如果...[繼續(xù)閱讀]

移動平臺

蘋果Mac最靈活的文件共享工具:????Dropshare

    Dropshare 是一款將 Mac 本地文件快速上傳到自建的遠程服務器并生成文件訪問地址方便他人訪問,Dropshare在此基礎上還提供了自動上傳本機屏幕截圖、共享文件自動生成 URL 短地址、設置訪問密碼、本機刪除服務器上傳文件、從剪切板...[繼續(xù)閱讀]

移動平臺

【Android】Android適配器之ArrayAdapter、SimpleAdapter和BaseAdapter的簡單用法

    ?ArrayAdapter、SimpleAdapter和BaseAdapter的一些簡短代碼片段,希望用時方便想起其用法。1.ArrayAdapter?只可以簡單的顯示一行文本代碼片段:??ArrayAdapter<String>?adapter?=?new?ArrayAdapter<String>(??????????????????this,????...[繼續(xù)閱讀]

移動平臺

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...[繼續(xù)閱讀]

移動平臺

蘋果 Mac 上不顯示外置硬盤?9 個必須嘗試的修復方法

    外置硬盤是在本地保存千兆字節(jié)數(shù)據(jù)的完美存儲解決方案之一。您只需將驅(qū)動器插入 Mac 并在桌面或 Finder 上訪問它們。但是,當外部驅(qū)動器無法安裝并出現(xiàn)時,事情就會出現(xiàn)問題。別擔心!小編收集了最佳修復程序,以消除外置硬...[繼續(xù)閱讀]

移動平臺

Android開發(fā)——四大組件之Activity

    <1>關于Activity和AndroidManifest我們AS項目里的AndroidManifest.xml文件其實就是一個清單文件,用于描述我們的項目內(nèi)容其中包含了一些Application、activity、包名等信息,還包括一些權限的聲明(例如在數(shù)據(jù)存儲時使用SD卡讀寫的權限聲明...[繼續(xù)閱讀]

移動平臺