是否可以从结束预付费通话后提出的对话中读取通话费用历史记录?
Posted
技术标签:
【中文标题】是否可以从结束预付费通话后提出的对话中读取通话费用历史记录?【英文标题】:Is it possible to read the call cost history from dialogue raised after ending the prepaid call? 【发布时间】:2013-12-15 16:48:29 【问题描述】:是否有可能处理预付费用户收到的通话费用对话框中显示的数据。我想在我的 sqlite 数据库中保存所有余额减少以及通话时间。
【问题讨论】:
据我所知,这是不可能的。我认为详细信息是由服务提供商通过 USSD 显示的。 其实你可以点这个链接看看有没有什么有价值的信息吗? ***.com/questions/13509958/… 我看到你的链接这些问题之间没有相似之处。 @silverback 不确定,但请尝试阅读 popsup 和 msg 。这可能有助于很好的问题 +1 你可以试试抓USSD:codedemigod.com/intercepting-ussd-calls-in-android 【参考方案1】:正如我们从已经著名的blog post 中学习的那样
首先,查看 Android 源代码中的 PhoneUtils 类。 [...] 具体来说,查看第 217 行,一个名为 “com.android.ussd.IExtendedNetworkService” 正在编写中。 那又怎样 你需要做的是实现你自己的服务来响应 意图。该服务需要按照 IExtendedNetworkService.aidl,它是 Android 框架的一部分。
从哪里开始?最好关注这个更出名的blog post
首先,我们了解基础知识:
-
我们需要一个实现
IExtendedNetworkService
接口的服务。
服务将知道意图"com.android.ussd.IExtendedNetworkService"
,因此它会在应用清单中具有相应的意图过滤器。
我们知道com.android.phone.PhoneUtils
将绑定到该服务。 (如果你不知道什么是绑定服务,请参考here)
在 Bind 上,我们返回一个 binder,其中包含 PhoneUtils 实际调用的函数
该服务必须正在运行,因此我们将在系统重新启动时启动它。为此,我们需要一个广播接收器。 (如果你不知道这是什么,想更好地了解这一切,请参考here)
让我们开始吧。
首先是接收器,这是最简单的部分。我们用这些内容创建一个名为 BootReceiver.java 的文件。
package com.android.ussdcodes;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
public class BootReceiver extends BroadcastReceiver
@Override
public void onReceive(Context context, Intent intent)
// TODO Auto-generated method stub
Log.d("USSDService", context.getString(R.string.service_started));
context.startService(new Intent(context,USSDDumbExtendedNetworkService.class));
现在,服务本身。我自己没有尝试过,但我已经阅读了代码here 以找到方法解释,我已经放入了 cmets。我还编辑了一些东西。
据我了解,您将在 getUserMessage 中收到实际文本,在那里您解析文本,并在弹出窗口中返回您想要的内容。如果您不想要弹出窗口,请返回 null。因此,您还应该在此处对该文本进行任何其他操作。
public class USSDDumbExtendedNetworkService extends Service
public static final String TAG = "ExtNetService";
public static CharSequence mRetVal = null;
public static boolean mActive = true;
private boolean change = false;
private String msgUssdRunning = null;
private final IExtendedNetworkService.Stub mBinder = new IExtendedNetworkService.Stub()
//Set a MMI/USSD command to ExtendedNetworkService for further process. This should be called when a MMI command is placed from panel.
//we don't need it in this case
@Override
public void setMmiString(String number) throws RemoteException
//return the specific string which is used to prompt MMI/USSD is running
@Override
public CharSequence getMmiRunningText() throws RemoteException
return msgUssdRunning;
//Get specific message which should be displayed on pop-up dialog.
Parameters:
text original MMI/USSD message response from framework
Returns:
specific user message correspond to text. null stands for no pop-up dialog need to show.
@Override
public CharSequence getUserMessage(CharSequence text)
throws RemoteException
return text;
//Clear pre-set MMI/USSD command. This should be called when user cancel a pre-dialed MMI command.
//we don't need it in this case
@Override
public void clearMmiString() throws RemoteException
;
@Override
public IBinder onBind(Intent intent)
msgUssdRunning = "Some text to show";
return mBinder;
public IBinder asBinder()
return mBinder;
@Override
public boolean onUnbind(Intent intent)
return super.onUnbind(intent);
最后一部分,清单。您必须注册服务和广播接收器
<receiver android:name="com.android.ussdcodes.BootReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
/intent-filter>
</receiver>
<service android:name=".USSDDumbExtendedNetworkService" >
<intent-filter android:icon="@drawable/ic_launcher">
<action android:name="com.android.ussd.IExtendedNetworkService" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</service>
【讨论】:
这只能在 4.2.2 之前的 Android 版本中实现。在 4.2.2 中,IExtendedNetworkService 似乎已被 Google 删除,因为存在安全风险。见issue posted at Google 谢谢!我不知道。关于 USSD 的一切都很棘手,恐怕我们必须继续研究 android 在下一个版本中会做什么。以上是关于是否可以从结束预付费通话后提出的对话中读取通话费用历史记录?的主要内容,如果未能解决你的问题,请参考以下文章