diff options
Diffstat (limited to 'docs/html/training/sharing')
-rw-r--r-- | docs/html/training/sharing/send.jd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/html/training/sharing/send.jd b/docs/html/training/sharing/send.jd index 15b38e5..9cb8eac 100644 --- a/docs/html/training/sharing/send.jd +++ b/docs/html/training/sharing/send.jd @@ -95,7 +95,7 @@ Intent sendIntent = new Intent(); sendIntent.setAction(Intent.ACTION_SEND); sendIntent.putExtra(Intent.EXTRA_TEXT, "This is my text to send."); sendIntent.setType("text/plain"); -startActivity(<strong>Intent.createChooser(sendIntent, getResources().getText(R.string.send_to)</strong>); +startActivity(<strong>Intent.createChooser(sendIntent, getResources().getText(R.string.send_to))</strong>); </pre> <p>The resulting dialog is shown in figure 1.</p> |