gpt4 book ai didi

java - 来电时多次更改 BlackBerry 的 callIncoming()

转载 作者:行者123 更新时间:2023-12-01 15:21:21 25 4
gpt4 key购买 nike

我正在开发应用程序。获取信息。通过号码了解调用者的信息。我在检查信息时遇到了一个小问题。关于调用者,电话不显示基本的来电屏幕。我想展示一个带有一个额外标签的来电屏幕。首先,标签的文本将是“搜索”,在获得搜索结果后,我想根据信息更改标签的文本。我发现。我尝试使用phoneScreenPortrait.updateDisplay(),但没有任何反应。

代码:

public void callIncoming(int callId)
{
ScreenModel screenModel = new ScreenModel(callId);
PhoneScreen phoneScreenPortrait = screenModel.getPhoneScreen(PhoneScreen.PORTRAIT, PhoneScreen.INCOMING);<p></p>

<pre><code>String resName = "";
String callNum = Phone.getCall(callId).getDisplayPhoneNumber();

if( Phone.getCall(callId).getContact() != null ) //Contact found
{
screenModel.sendAllDataToScreen();
return;
}

LabelField callerName;
callerName = new LabelField( "Searching" )
{
public void paint(Graphics g)
{
g.setColor(Color.WHITE);
super.paint(g);
}
};

callerName.setFont(phoneScreenPortrait.getCallerInfoFont());
phoneScreenPortrait.add(callerName);

screenModel.sendAllDataToScreen();

try
{
resName = getName( callNum ); // Get's the name with my function
}
catch( Exception ex )
{
System.out.println(ex.toString());
}

if( resName == null )
resName = "No match..";

callerName.setText( resName );
phoneScreenPortrait.updateDisplay();
</code></pre>

<p>}</p>
谢谢,罗特姆

最佳答案

好吧,我自己解决了..

设置 LabelField 的文本后,我添加了这些行:

phoneScreen.updateDisplay();
phoneScreen.doPaint();
screenModel.sendAllDataToScreen();

关于java - 来电时多次更改 BlackBerry 的 callIncoming(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10868752/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com