當(dāng)前位置:首頁(yè) > IT技術(shù) > 移動(dòng)平臺(tái) > 列表
移動(dòng)平臺(tái) 共有 121249 個(gè)文章

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ù)閱讀]

移動(dòng)平臺(tái)

X-Library系列Android應(yīng)用框架詳解

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

移動(dòng)平臺(tái)

css處理ios劉海屏問(wèn)題

    <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1.0,user-scalable=no,viewport-fit=cover" />viewport-fit 設(shè)置為cover.home{? ? padding-bottom:constant(safe-area-inset-bottom); //兼容IOS < 11.2? ? padding-bottom:env(safe-area-inset-bottom);//兼容IOS &g...[繼續(xù)閱讀]

移動(dòng)平臺(tái)

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ù)閱讀]

移動(dòng)平臺(tái)

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

    在使用pyinstaller打包成exe文件時(shí),如果出現(xiàn)下面的問(wèn)題:[pyinstaller]PermissionError: [Errno 13] Permission denied:C:UsersxxxAppDataLocalucrtbase.dll則可以先查看該路徑下是否存在ucrtbase.dll這個(gè)文件,因?yàn)楹苡锌赡芤驗(yàn)椴淮嬖谠撐募?dǎo)致該問(wèn)題的。如果...[繼續(xù)閱讀]

移動(dòng)平臺(tái)

蘋(píng)果Mac最靈活的文件共享工具:????Dropshare

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

移動(dòng)平臺(tái)

【Android】Android適配器之ArrayAdapter、SimpleAdapter和BaseAdapter的簡(jiǎn)單用法

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

移動(dòng)平臺(tái)

Java SpringBoot手動(dòng)加載指定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ù)閱讀]

移動(dòng)平臺(tái)

蘋(píng)果 Mac 上不顯示外置硬盤(pán)?9 個(gè)必須嘗試的修復(fù)方法

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

移動(dòng)平臺(tái)

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

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

移動(dòng)平臺(tái)