1

我有一个应用程序,其布局中有一个编辑文本和按钮

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <EditText
        android:id="@+id/editText1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:inputType="phone" >

        <requestFocus />
    </EditText>

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignRight="@+id/editText1"
        android:layout_below="@+id/editText1"
        android:text="Dial" />

</RelativeLayout>

和一个MainActivity延伸Activity和做

@Override
protected void onCreate(Bundle savedInstanceState)
{
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);

  final EditText editText1 = (EditText) findViewById(R.id.editText1);
  Button button1 = (Button) findViewById(R.id.button1);
  button1.setOnClickListener(new OnClickListener()
  {
    @Override
    public void onClick(View v)
    {
      String strNumber = editText1.getText().toString();
      if (!strNumber.equals("")) 
      {
        Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + strNumber));
        startActivity(intent);
      }
    }      
  });
}

对于不以'08...'开头的号码,它会按预期调用号码。对于以 '08...' 开头的号码,它会调出填写了号码的拨号器。我怎样才能阻止这个?它似乎不是手机上的设置,至少就我所见而言,但我在 4.3 模拟器上对其进行了测试,它按预期工作。我没有另一个 4.3 手机来测试它。我的 4.2.2 HTC One 和我所有的旧测试设备一样按预期拨号。

我可以直接拨打 0800 号码,或者在应用程序启动拨号器后点击通话按钮,因此它们不会被完全阻止,而且我在手机中没有 SIM 卡的情况下也能获得相同的效果,所以不是这样。


ETA:我可以通过在 08 号码前加上“,”来解决这个问题,这会在拨号前造成轻微的暂停,但其他情况下可以。不过,这并不能真正解释为什么会发生这种情况。

4

1 回答 1

2

我没有4.3的手机做个测试。但是,我查看了OutgoingCallBroadcaster的源代码,其作用描述如下:

OutgoingCallBroadcaster 接收 CALL 和 CALL_PRIVILEGED 意图,并广播 ACTION_NEW_OUTGOING_CALL 意图,允许其他应用程序监视、重定向或阻止传出呼叫。

它的processIntent(Intent i)方法包含一个片段(在第 493 行附近),如果 number 被视为“潜在紧急情况”,则将 Intent 的操作更改为 ACTION_DIAL。

总而言之,Android 有一个使用拨号盘拦截 ACTION_CALL 的策略。不过,不太清楚为什么会发生这种情况。

于 2014-02-07T16:01:54.760 回答