jump To System Download Apk Activity - Android App

Android examples for App:APK Download

Description

jump To System Download Apk Activity

Demo Code


//package com.java2s;

import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.net.Uri;

import android.text.Html;

public class Main {
    public static void jumpToSystemDownloadApk(Context context, String url) {
        Intent intent = new Intent("android.intent.action.VIEW");
        Uri data = Uri.parse(Html.fromHtml(url).toString());
        intent.setData(data);//  w ww  .  j av a2  s  .com
        intent.setPackage("com.google.android.browser");
        intent.addCategory("android.intent.category.BROWSABLE");
        intent.setComponent(new ComponentName("com.android.browser",
                "com.android.browser.BrowserActivity"));
        context.startActivity(intent);
    }
}

Related Tutorials