2014年6月10日 星期二

[Android] 照相

官方範例檔:PhotoIntentActivity.zip

一、設定權限

<manifest ... >
    <uses-feature android:name="android.hardware.camera" />
    ...
</manifest>

如果也要限制有相機的手機才能下載這個 App ,
則改寫成下面這樣:
<manifest ... >
    <uses-feature android:name="android.hardware.camera"
                  android:required="true" />
    ...
</manifest>


[Android] 分享/寄送訊息到其他的 App ( Line 、 Facebook Messenger 等)

加入下面這個function,
然後要用的地方呼叫它就行囉~

private void sendTextToOtherApp(String text) {
    Intent sendIntent = new Intent();
    sendIntent.setAction(Intent.ACTION_SEND);
    sendIntent.putExtra(Intent.EXTRA_TEXT, text);
    sendIntent.setType("text/plain");
    startActivity(Intent.createChooser(sendIntent, "Send text to..."));
}



例如: