Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit aaf8a9d8 authored by Scott Main's avatar Scott Main Committed by Android Git Automerger
Browse files

am 218c0763: Merge change Ib43ec8f6 into eclair

Merge commit '218c0763' into eclair-plus-aosp

* commit '218c0763':
  docs: fix some typos in the manifest docs samples and
parents f0165495 218c0763
Loading
Loading
Loading
Loading
+12 −12
Original line number Diff line number Diff line
@@ -5,10 +5,10 @@ page.title=<activity>
<dt>syntax:</dt>
<dd><pre class="stx">&lt;activity android:<a href="#reparent">allowTaskReparenting</a>=["true" | "false"]
          android:<a href="#always">alwaysRetainTaskState</a>=["true" | "false"]
          android:<a href="#clear">clearTaskOnLaunch</a>=["true"" | "false"]
          android:<a href="#config">configChanges</a>=[<i>one or more of</i>: "mcc" "mnc" "locale" 
                                 "touchscreen" "keyboard" "keyboardHidden" 
                                 "navigation" "orientation" "fontScale"]
          android:<a href="#clear">clearTaskOnLaunch</a>=["true" | "false"]
          android:<a href="#config">configChanges</a>=["mcc", "mnc", "locale",
                                 "touchscreen", "keyboard", "keyboardHidden",
                                 "navigation", "orientation", "fontScale"]
          android:<a href="#enabled">enabled</a>=["true" | "false"]
          android:<a href="#exclude">excludeFromRecents</a>=["true" | "false"]
          android:<a href="#exported">exported</a>=["true" | "false"]
@@ -28,11 +28,11 @@ page.title=&lt;activity&gt;
          android:<a href="#state">stateNotNeeded</a>=["true" | "false"]
          android:<a href="#aff">taskAffinity</a>="<i>string</i>"
          android:<a href="#theme">theme</a>="<i>resource or theme</i>"
          android:<a href="#wsoft">windowSoftInputMode</a>=[<i>one or more of</i>: "stateUnspecified" 
                                       "stateUnchanged" "stateHidden" 
                                       "stateAlwaysHidden" "stateVisible" 
                                       "stateAlwaysVisible" "adjustUnspecified" 
                                       "adjustResize" "adjustPan"] &gt;   <!-- ##api level 3## -->
          android:<a href="#wsoft">windowSoftInputMode</a>=["stateUnspecified",
                                       "stateUnchanged", "stateHidden",
                                       "stateAlwaysHidden", "stateVisible",
                                       "stateAlwaysVisible", "adjustUnspecified",
                                       "adjustResize", "adjustPan"] &gt;   <!-- ##api level 3## -->
    . . .
&lt;/activity&gt;</pre></dd>

+1 −1
Original line number Diff line number Diff line
@@ -445,7 +445,7 @@ element. For example, an activity could be protected as follows:
    &lt;permission android:name="com.example.project.DEBIT_ACCT" . . . /&gt;
    . . .
    &lt;application . . .&gt;
        &lt;activity android:name="com.example.project.FreneticActivity" . . . &gt;
        &lt;activity android:name="com.example.project.FreneticActivity"
                  android:permission="com.example.project.DEBIT_ACCT"
                  . . . &gt;
            . . .