Android uses code to install and uninstall applications

Source: Internet
Author: User

Because the application installation and uninstallation modules have been written in the android system, we only need to activate them.

Note:

Intent. setDataAndType (Uri. fromFile (file), "application/vnd. android. package-archive "); In this statement, the first parameter is the path of the apk to be installed, and the second parameter is the type of the apk. You can find it in web. xml in the conf directory under the tomcat installation directory.

Program running:

The code is implemented as follows:

1. main. xml

<? Xml version = "1.0" encoding = "UTF-8"?> <LinearLayout xmlns: android = "http://schemas.android.com/apk/res/android" android: layout_width = "match_parent" android: layout_height = "match_parent" android: orientation = "vertical"> <Button android: layout_width = "wrap_content" android: layout_height = "wrap_content" android: text = "install" android: onClick = "install"/> <Button android: layout_width = "wrap_content" android: layout_height = "wrap_content" android: text = "uninstall" android: onClick = "uninstall"/> </LinearLayout>

2. MainActivity

package com.njupt.install;import java.io.File;import android.net.Uri;import android.os.Bundle;import android.os.Environment;import android.app.Activity;import android.content.Intent;import android.view.Menu;import android.view.View;public class MainActivity extends Activity {@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.main);}public void install(View v){Intent intent = new Intent();intent.setAction(Intent.ACTION_VIEW);File file = new File(Environment.getExternalStorageDirectory(),"HtmlUI1.apk");intent.setDataAndType(Uri.fromFile(file), "application/vnd.android.package-archive");startActivity(intent);}public void uninstall(View v){Intent intent = new Intent();    intent.setAction(Intent.ACTION_DELETE);    intent.setData(Uri.parse("package:com.njupt.htmlui1"));startActivity(intent);}@Overridepublic boolean onCreateOptionsMenu(Menu menu) {// Inflate the menu; this adds items to the action bar if it is present.getMenuInflater().inflate(R.menu.main, menu);return true;}}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.