安卓打电话功能的实现

首先在values文件夹中的string.xml中实现文字内容



Phone

请输入你要拨打的号码
拨打

然后在layout文件夹中的main.xml中实现整体布局


android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/input_info" />

android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/phone_number"/>

你可能感兴趣的:(安卓打电话功能的实现)