当前位置: 代码迷 >> Symbian >> 哪位高手知道UIQ3.0下browser的UID号是多少?
  详细解决方案

哪位高手知道UIQ3.0下browser的UID号是多少?

热度:6300   发布时间:2013-02-26 00:00:00.0
谁知道UIQ3.0下browser的UID号是多少??????
如题,谢谢!

------解决方案--------------------------------------------------------
写个程序测试下:
例如:
RApaLsSession iLsSession;
User::LeaveIfError(iLsSession.Connect());
TApaAppInfo apaAppInfo;
TInt appid;
TBuf <64> appName;

// Get info on all apps, then iterate through each app
User::LeaveIfError(iLsSession.GetAllApps());
for (;;)
{
if (iLsSession.GetNextApp(apaAppInfo)!=KErrNone)
{
break;
}
else
{
appName = apaAppInfo.iCaption; //程序标题
appid = apaAppInfo.iUid.iUid; //程序ID
}
}
  相关解决方案