●實作練習:預期畫面
=>將自己app中的內容分享給其他app
=>這邊將文章內容分享到SMS簡訊服務中
●程式--java code
MainActivity.java
public void share(View view) {
Intent in=new Intent();
in.setAction(Intent.ACTION_SEND);
//EXTRA_TEXT:A constant CharSequence that is associated with the Intent,
//used with ACTION_SEND to supply the literal data to be sent.
in.putExtra(Intent.EXTRA_TEXT
,getResources().getString(R.string.share_content));
in.setType("text/plain");
startActivity(in);
}
●程式參考(GitHub):Implicit Intent / Share Content
●關於Intent EXTRA_DATA的參考:Intent Standard Extra Data
文章標籤
全站熱搜
