我在启动画面上有两个按钮,我想检查应用程序是否安装,如果应用程序安装按钮开始工作,用户可以点击进入主要活动,另一个按钮被禁用点击,如果应用程序没有& #39; t安装按钮启动禁用和按钮安装和下载工作..怎么做?
int sumtree(struct listnode * L) {
int tot = 0;
while (L != NULL) {
if(L.data /* TODO: check if it is a number*/)
tot += L.data;
else /* L.data is a sublist */
tot = sumtree(L.data);
list = list->next;
}
return tot;
}
答案 0 :(得分:0)
if (isAppInstalled) {
Intent Start_screen = new Intent(SplashScreen.this, MainActivity.class);
startActivity(Start_screen);
} else {
//start.setEnabled(false);
start.setOnClickListener(null);
}
答案 1 :(得分:0)
尝试{ //使用要检查的app的packagename getPackageManager()。getPackageInfo(“com.example.helloworld”,PackageManager.GET_ACTIVITIES);
} catch (PackageManager.NameNotFoundException e) {
}