Android項目 手機安全衛士(代碼最全,注釋最詳細)之七 應用程式的更新安裝

來源:互聯網
上載者:User

按慣例,寫在前面的:可能在學習Android的過程中,大家會和我一樣,學習過大量的基礎知識,很多的知識點也都能說出了123來,但是這些孤立的點終究顯得太零散了,因此,我想從今天開始,以最經典的手機安全衛士項目為例,自己鍛煉一下,也是想和大家交流交流,希望大家都能給出見解,共同進步。 七、應用程式的更新安裝當下載成功後(onSuccess方法中)建立一個安裝軟體的方法:具體代碼: 

private void apkInstall(File t){      Intent intent = new Intent();      intent.setAction(Intent.ACTION_VIEW);   //or  intent.setAction(android.intent.action.VIEW);      intent.addCategory("android.intent.category.DEFAULT");      intent.setDataAndType(Uri.fromFile(t), "application/vnd.android.package-archive");      startActivity(intent);  }  

 

 注意:上面不能分別使用setData和setType。 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.