我想将应用程序安装在应用程序内存而不是系统内存中的特定位置。我应该怎么办?
此代码将所选应用程序安装在我想要的手机内存中
@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
FileInformation information = files_list.get(position);
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File(information.getPath())),
"application/" +
"vnd.android.package-archive");
this.startActivity(intent);
}