Android studio案例之實現電話撥號
一、代碼配置
1、創建項目
流程看圖
2、增添代碼
更改佈局
佈局完整代碼
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context=".MainActivity"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="電話撥號" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" /> </LinearLayout>
插入圖片
activity_main_xml文件佈局
完整代碼
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context=".MainActivity"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="電話撥號" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" /> <EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="輸入電話號碼" android:inputType="number" android:id="@+id/phoneNum"/> <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent"> <ImageButton android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@drawable/call" android:layout_centerInParent="true" android:id="@+id/call_btn"/> </RelativeLayout> </LinearLayout>
效果展示
mainactivity.java文件
EditText phoneNum; ImageButton call_btn; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); phoneNum=(EditText) findViewById(R.id.phoneNum); call_btn=(ImageButton) findViewById(R.id.call_btn); call_btn.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Intent intent=new Intent(); intent.setAction(Intent.ACTION_CALL); intent.setData(Uri.parse("tel:"+phoneNum.getText())); startActivity(intent);
圖片
運行代碼
撥號嘗試,出現報錯,需要設置對應權限
3、權限請求
Androidmainfest.xml文件中
<uses-permission android:name="android.permission.CALL_PHONE"/>
Android 6.0以上需要自己手動賦予權限。
應用程序權限請求
版本號判斷方法
protected boolean shouldAskPermissions(){ return (Build.VERSION.SDK_INT > Build.VERSION_CODES.LOLLIPOP_MR1); }
權限申請方法
protected void askPermissions() { String[] permissions = { "android.permission.CALL_PHONE" }; int requestCode = 200; requestPermissions(permissions, requestCode); }
在onCreate中調用
if(shouldAskPermissions()){ askPermissions(); }
請求權限加入代碼時要保證程序處於運行狀態,不然代碼加進去會報錯。
二、效果演示
隨便輸入得數字號碼,提示為空號。
以上就是Android studio案例之實現電話撥號的詳細內容,更多關於Android studio電話撥號的資料請關註WalkonNet其它相關文章!
推薦閱讀:
- None Found