調用系統功能

系統撥號: 對象

                Intent intent = new Intent();// 建立Intent對象
                intent.setAction(Intent.ACTION_DIAL);// 爲Intent設置動做
                intent.setData(Uri.parse("tel:" + number));// 爲Intent設置數據
                startActivity(intent);// 將Intent傳遞給Activity it

編輯聯繫人 io

                Intent intent = new Intent();
                intent.setAction(Intent.ACTION_EDIT);
                intent.setData(Uri.parse("content://contacts/people/1"));
                startActivity(intent);

 

 返回HomePage             數據

                Intent intent = new Intent();// 建立Intent對象                 intent.setAction(Intent.ACTION_MAIN);// 設置Intent動做                 intent.addCategory(Intent.CATEGORY_HOME);// 設置Intent種類                 startActivity(intent);// 將Intent傳遞給Activity
相關文章
相關標籤/搜索