在 LWUIT 中拨打电话
我有一个带有电话号码的文本字段。我想要做的就是当文本字段聚焦并按下呼叫按钮时,必须暂停应用程序并使用 platformRequest API。
我想在 lwuit 做。谁能建议如何做到这一点?
示例代码将不胜感激。
I have a textfield with phone number. All I want to do is when the textfield is focused and call button is pressed, application must be paused and call should be made to the phone number of the textfield using platformRequest API.
I want to do it in lwuit. Can anyone suggest a idea how to do this?
Sample code would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的主类应该使用
MIDlet
进行扩展。所以不存在任何问题。您可以这样调用,假设如果您想访问 midlet 外部,您可以将 midlet 对象传递给该类并像这样调用,
Your main class should extends with
MIDlet
. So there is no issues. You can call like this,Suppose If you want to access outside of midlet, you can pass the midlet object to that class and call like this,
您也可以使用以下命令来扩展 MIDlet:
Also you can do without extend MIDlet using this: