@@ -43,8 +43,8 @@ new Google+ post with photos from the Android Gallery app.</p>
4343<h2 id="update-manifest">Update Your Manifest</h2>
4444
4545<p>Intent filters inform the system what intents an application component is willing to accept.
46- Just as you constructed an intent with action {@link android.content.Intent#ACTION_SEND} in the
47- <a href="{@docRoot}training/sharing/send.html">Send Content to Other Apps Using Intents</a>
46+ Similar to how you constructed an intent with action {@link android.content.Intent#ACTION_SEND} in
47+ the <a href="{@docRoot}training/sharing/send.html">Send Content to Other Apps Using Intents</a>
4848lesson, you create intent filters in order to be able to receive intents with this action. You
4949define an intent filter in your manifest, using the
5050<code><a
@@ -78,9 +78,9 @@ Filters</a></p>
7878
7979<p>When another application tries to share any of these things by constructing an intent and passing
8080it to {@link android.content.Context#startActivity(android.content.Intent) startActivity()}, your
81- application will be listed as an option in the intent chooser (see figure 1) . If the user selects
82- your application, the corresponding activity (<code>.ui.MyActivity</code> in the example above) will
83- be started. It is then up to you to handle the content appropriately within your code and UI.</p>
81+ application will be listed as an option in the intent chooser. If the user selects your application,
82+ the corresponding activity (<code>.ui.MyActivity</code> in the example above) will be started. It
83+ is then up to you to handle the content appropriately within your code and UI.</p>
8484
8585
8686<h2 id="handling-content">Handle the Incoming Content</h2>
0 commit comments