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)メソッドには、number が「緊急の可能性がある」と見なされた場合に、インテントのアクションを ACTION_DIAL に変更するフラグメント (493 行付近) が含まれています。

要約すると、Android にはダイヤラ パッドで ACTION_CALL をインターセプトするポリシーがあります。ただし、なぜそれがあなたの場合に起こったのかはよくわかりません。

于 2014-02-07T16:01:54.760 に答える