我正在开发一个应用程序,它将显示来电的服务提供者(如Vodaphone等)信息。 我使用吐司完成了它。使用以下代码
TelephonyManager telephonyManager = (TelephonyManager)getSystemService(Context.TELEPHONY_SERVICE);
PhoneStateListener callStateListener = new PhoneStateListener() {
public void onCallStateChanged(int state, String incomingNumber)
{
// TODO React to incoming call.
if(state==TelephonyManager.CALL_STATE_RINGING)
{
Toast.makeText(getApplicationContext(),finder.find(incomingNumber), Toast.LENGTH_LONG).show();
}
}
};
telephonyManager.listen(callStateListener,PhoneStateListener.LISTEN_CALL_STATE);
问题是Toast在很短的时间内就可见了。我希望在用户没有接到电话之前将其显示出来(即,直到电话振铃,一旦收到吐司应该消失)。
我应该怎么做。
我可以使用其他控件,如对话框等。
感谢
答案 0 :(得分:1)
在处理程序线程中运行toast,如下所示:
点击呼叫按钮尝试以下操作:
Button call = (Button) findViewById(R.id.call);
call.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
//call the user function to make call
}
});
并在您的课程中添加此方法:
private final Runnable mRunnable = new Runnable() {
public void run() {
Toast.makeText(getApplicationContext(),finder.find(incomingNumber), Toast.LENGTH_LONG).show();
mHandler.postDelayed(mRunnable, 1000);
}
};
取消你的toast点击结束按钮或用户选择通话后
Button end= (Button) findViewById(R.id.end);
end.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
//call the function to end the call if the other user dont receive
}
});
否则像你的功能一样使用:
if(state==TelephonyManager.CALL_STATE_RINGING)
{
mHandler.postDelayed(mRunnable, 1000);
}