發表文章

目前顯示的是 3月, 2016的文章

Android - Bluetooth Multiple 藍芽一對多

Reference: http://developer.android.com/intl/zh-tw/guide/topics/connectivity/bluetooth.html Example: https://github.com/polyclef/BluetoothChatMulti File -> New -> Import Sample ->  Bluetooth Chat  Keyword: Bluetooth Chat Bluetooth Socket

Android - Linking to Your Products 開啟APP安裝頁面

Reference: http://developer.android.com/intl/zh-tw/distribute/tools/promote/linking.html Example: final String appPackageName = getPackageName(); // getPackageName() from Context or Activity object try {     startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + appPackageName))); } catch (android.content.ActivityNotFoundException anfe) {     startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://play.google.com/store/apps/details?id=" + appPackageName))); }