我有一个应用程序,其布局中有一个编辑文本和按钮
<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 号码前加上“,”来解决这个问题,这会在拨号前造成轻微的暂停,但其他情况下可以。不过,这并不能真正解释为什么会发生这种情况。