- 1、本文档共14页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
10.1 TelephonyManager( 电话管理器)
本节引⾔:
本章节是Android基础⼊门教程的最后⼀章,主要讲解是⼀些零零散散的
⼀些知识点,以及⼀些遗漏 知识点的补充, 些零散的知识点包括,各
种系统服务的使⽤,⽐如本节的电话管理器,短信管理器, 振动器,闹
钟,壁纸等等,还有传感器之类的东西 !乱七⼋糟什么都有哈 !好的,
本节我们要学习的 是TelephonyManager ,见名知义:⽤于管理⼿机通话
状态,获取电话信息(设备信息、sim卡信息以及 ⽹络信息) ,侦听电话状
态(呼叫状态服务状态、信号强度状态等) 以及可以调⽤电话拨号器拨打
电话 ! 话不多开始本节内容~
官⽅API:TelephonyManager
1.获得TelephonyManager 的服务对象
TelephonyManager tManager =
(TelephonyManager)getSystemService(Context.TELEP ONY_SERVICE);
2.⽤法⽰例
1)调⽤拨号器拨打电话号码
Uri uri=Uri.parse(tel:+电话号码);
Intent intent=new Intent(Intent.ACTION_DIAL,uri);
startA tivity(intent);
2)获取Sim卡信息与 络信息
运⾏效果图:
实现代码:
布局⽂件:activity_main.xml :
LinearLayout xmlns:android=http://s hemas.android. om/apk/res/an
xmlns:tools=http://s hemas.android. om/tools
android:layout_width=mat h_parent
android:layout_height=mat h_parent
android:orientation=verti al
android:padding=5dp
tools: ontext=.MainA tivity
TextView
android:id=@+id/tv_phone1
android:layout_width=mat h_parent
android:layout_height=wrap_ ontent
android:textSize=20sp /
TextView
android:id=@+id/tv_phone2
android:layout_width=mat h_parent
android:layout_height=wrap_ ontent
android:textSize=20sp /
TextView
android:id=@+id/tv_phone3
android:layout_width=mat h_parent
android:layout_height=wrap_ ontent
android:textSize=20sp /
TextView
android:id=@+id/tv_phone4
android:layout_width=mat h_parent
android:layout_height=wrap_ ontent
android:textSize=20sp /
TextView
android:id=@+id/tv_phone5
android:layout_width=mat h_parent
android:layout_height=wrap_ ontent
android:textSize=20sp /
TextView
android:id=@+id/tv_phone6
android:layout_width=mat h_parent
android:layout_height=wrap_ ontent
您可能关注的文档
- 第五节《资源的应用》.ppt
- 第五节box-vellum纸盒设计CAD1.ppt
- STS应用中的问题与解析.pdf
- 第五节Linux编程新修改.ppt
- 第五节mathlab_文件输入输出(IO).ppt
- Sublime APICloud 插件的安装及使用说明(二).docx
- sublime插件和使用.docx
- SUN----JAVA补充知识教案.ppt
- 第五节电极过程扩散动力学.ppt
- Super∑CM系列解析.ppt
- 2024年江西省高考政治试卷真题(含答案逐题解析).pdf
- 2025年四川省新高考八省适应性联考模拟演练(二)物理试卷(含答案详解).pdf
- 2025年四川省新高考八省适应性联考模拟演练(二)地理试卷(含答案详解).pdf
- 2024年内蒙通辽市中考化学试卷(含答案逐题解析).docx
- 2024年四川省攀枝花市中考化学试卷真题(含答案详解).docx
- (一模)长春市2025届高三质量监测(一)化学试卷(含答案).pdf
- 2024年安徽省高考政治试卷(含答案逐题解析).pdf
- (一模)长春市2025届高三质量监测(一)生物试卷(含答案).pdf
- 2024年湖南省高考政治试卷真题(含答案逐题解析).docx
- 2024年安徽省高考政治试卷(含答案逐题解析).docx
文档评论(0)