实验目的
成都创新互联公司是专业的铜鼓网站建设公司,铜鼓接单;提供网站设计制作、网站制作,网页设计,网站设计,建网站,PHP网站建设等专业做网站服务;采用PHP框架,可快速的进行铜鼓网站开发网页制作和功能扩展;专业做搜索引擎喜爱的网站,专业的做网站团队,希望更多企业前来合作!
1.掌握简单的组件(TextView,EditText,Button)使用
2.掌握点击事件的使用
电话拔号器效果图
界面布局代码:
<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" > <TextView android:id="@+id/title" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/title"/> <EditText android:id="@+id/phoneNumber" android:layout_width="match_parent" android:layout_height="wrap_content" android:inputType="phone" android:layout_below="@id/title"/> <Button android:id="@+id/button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/callPhone" android:layout_below="@id/phoneNumber"/> </RelativeLayout>
Java代码实现拨打电话:
@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); Button button=(Button) findViewById(R.id.button); button.setOnClickListener(this); } @Override public void onClick(View v) { //1.获取输入的电话号码 EditText et=(EditText) findViewById(R.id.phoneNumber); String number=et.getText().toString(); //2.创建打电话意图 Intent intent=new Intent(); intent.setAction(intent.ACTION_CALL); intent.setData(Uri.parse("tel:"+number)); startActivity(intent); }
注意 在AndroidManifest.xml添加拨打电话的权限
<uses-permission android:name="android.permission.CALL_PHONE"/>
测试:
本文标题:1.4Android应用之电话拔号器
标题网址:https://www.cdcxhl.com/article42/jieohc.html
成都网站建设公司_创新互联,为您提供网站设计、标签优化、做网站、营销型网站建设、网页设计公司、关键词优化
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联