Hi, all.
I will use networkcontrol in my S60 Programme.
I wonder if the programme can only be signed by the mode of Certified Signed.
If that is the only way,then, how long and how much will it...
Type: Posts; User: lmyuanhang; Keyword(s):
Hi, all.
I will use networkcontrol in my S60 Programme.
I wonder if the programme can only be signed by the mode of Certified Signed.
If that is the only way,then, how long and how much will it...
my english is not good enought to get the answer in http://www.symlab.org/main/documenta...801BBA2B3.html
Yes , my problem is it
I chech the uid of focus application .
the destop uid is the same as menu uid.
how to know if the the current view of my device is desktop view or menu view?
thanks!
sorry, thanks!
can you tell me ,what's is the locking API?
thanks!!!!
HI,all
ScreenLock.
how to get the state of lock screen?
and when I konw the scree was locked, how to open the screen?
thanks!
HI,symbianyucca .
the problem was solved.
then I press the btn. I start a timer. in the timer I excute the follow code :
TApaTask task(CEikonEnv::Static()->WsSession());...
HI,symbianyucca .
my app run in background usually.
when some event happen, for example , a key was pressed. my app. will bring to Foreground.
some button which my custom show in my app. then...
I custom a button in s60 v5.
when I press the rect of button. I can receive the evnet in HandlePointerEventL function.
but the other app which behind my app. can receive the event, also.
how to...
my app run in the Background.
in my app. listen the calling event. if the calling is no answer. I want close the no answer dialog by simulating Pointer evnets.
my code as follow:
...
My app is a full screen app. but it has a bug. the operator procedure as follow.
in may app. my draw two bitmap in the bottom of screen, as left, right soft key.
first, open my app. and press...
当我监听到电话时,可以区分,是我挂断还是对方断的么?
HI, kkrish.
I just want to kown the phone calling status.
when my phone ringing. and I not answer the phone, in such a case. have two status.
1) I press the Call termination key
2) the...
I receive a calling.
I want to konw if the phone is the callinger ring off or I ring off.
how to do that.
HI, all
when I receive a calling.
I want to know the differences among that whether the other part or I take the initiative to hang up, or timed automatic disconnection under the circumstance that...
HI,
when i capture the key event. do that
Int wgId = iWsSession.GetFocusWindowGroup();
iWsSession.SendEventToWindowGroup(wgId, e);
the key event will sent to foreground App.
can I send...
HI,symbianyucaa.
when i capture a key event. if I don't do anythings.
if the event go on consume by the focus app?
Hi, all.
in my app, when I capture the key event by the CKeyCapturer, I want consume the key event.
but not in the way .
TInt wgId = iWsSession.GetFocusWindowGroup(); ...
the APPUI code :
1.开机自启动。
2。隐藏程序列表,隐藏应用程序图标。
3。挂机后始终有确认按钮,确认后程序跳到号码簿
4。除第一次外,其它USSD都为系统原始USSD显示窗口
/*
============================================================================
Name :...
MY Code follow:
KeyCapturer.h:
class MKeyCallBack
{
public:
virtual TBool KeyCapturedL(TWsEvent aEvent) = 0;
};
class CKeyCapturer: public CActive
HI, wizar_hu_
you mean Session.SendEventToWindowGroup(wgId, e);
send the key event to the ForegroundL App ?
but I comment out the
TInt wgId = iWsSession.GetFocusWindowGroup(); ...
void CKeyCapturer::RunL()
{
if (iStatus == KErrNone)
{
TWsEvent e;
iWsSession.GetEvent(e);
if(iObserver.KeyCapturedL(e))
{
TInt wgId =...
if(iObserver.KeyCapturedL(e))
{
TInt wgId = iWsSession.GetFocusWindowGroup();
iWsSession.SendEventToWindowGroup(wgId, e);
}
in my app the line...