// 撥號的
Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:123456789"));
// 將電話號碼傳入撥號程序代碼
intent = new Intent(Intent.ACTION_DIAL, Uri.parse("tel:123456789"));
// 調用撥號程序
intent = new Intent("com.android.phone.action.TOUCH_DIALER");
// 調用系統瀏覽器
intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.baidu.com"));
// 調用系統程序查看聯繫人代碼
intent = new Intent("com.android.contacts.action.LIST_CONTACTS");
// 顯示系統設置的界面
intent = new Intent("android.settings.SETTINGS");
// 顯示WIFI設置界面代碼
intent = new Intent("android.settings.WIFI_SETTINGS");
//如何將Activity變成半透明對話框
<style name="myTheme" parent="@android :style/Theme.Dialog">
<item name="android:windowBackground">@drawable/半透明png</item>
</style>
在AndroidMainfest.xml
<activity android:theme="@style/myTheme"> android