onecoders / NetEase

NetEase Example
6 stars 6 forks source link

Java UUID #77

Open onecoders opened 10 years ago

onecoders commented 10 years ago

http://en.wikipedia.org/wiki/Universally_unique_identifier

onecoders commented 10 years ago

android download file from url http://stackoverflow.com/questions/3028306/download-a-file-with-android-and-showing-the-progress-in-a-progressdialog http://stackoverflow.com/questions/8687391/download-a-file-from-url-and-save-to-memory-disk-android http://www.androidsnippets.com/download-an-http-file-to-sdcard-with-progress-notification & android download flash video

onecoders commented 10 years ago

http://www.trinea.cn/android/android%E7%B3%BB%E7%BB%9F%E4%B8%8B%E8%BD%BD%E7%AE%A1%E7%90%86downloadmanager%E5%8A%9F%E8%83%BD%E4%BB%8B%E7%BB%8D%E5%8F%8A%E4%BD%BF%E7%94%A8%E7%A4%BA%E4%BE%8B/

onecoders commented 10 years ago

Java code

Uri uri = Uri.parse("http://xxx.xxx.xxx/xxx.apk");

Intent intent =new Intent(Intent.ACTION_VIEW, uri);startActivity(intent);