반응형
/**
* 인스톨 메소드
* @param apkName
*/
public void onInstall(String apkName){
File apkFile = new File(apkName);
Uri apkUri = Uri.fromFile(apkFile);
try
{
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setDataAndType( Uri.fromFile(apkFile), "application/vnd.android.package-archive");
DownManagement.this.startActivity(intent);
}
catch (Exception e){
e.printStackTrace();
}
}
반응형
'프로그래밍 정리 > 안드로이드' 카테고리의 다른 글
모바일정보(네트워크, 맥어드레스, 커널버전 등등.. 모바일 정보 가져오기) (0) | 2012.06.25 |
---|---|
위젯 Refresh (0) | 2012.06.25 |
Asynctask 예제 (0) | 2012.06.25 |
폴더 삭제(안의 파일들도 같이 삭제 (0) | 2012.06.25 |
APPWIDGET_RESIZE (0) | 2012.06.21 |