diff options
author | Scott Main <smain@google.com> | 2009-12-16 11:08:26 -0800 |
---|---|---|
committer | Scott Main <smain@google.com> | 2009-12-16 11:08:26 -0800 |
commit | c49f864695b7546964ccd1ea3526e6af2271cb59 (patch) | |
tree | 4037c5a00149a0a2b9a072ce1ce9c72bb3997a81 /docs/html/guide/topics/manifest | |
parent | b5362167abb1dc6858fcb2d7b7e212683ae255a5 (diff) | |
parent | aaf8a9d885380abe62e635487b8bdc84d0c605f0 (diff) | |
download | frameworks_base-c49f864695b7546964ccd1ea3526e6af2271cb59.zip frameworks_base-c49f864695b7546964ccd1ea3526e6af2271cb59.tar.gz frameworks_base-c49f864695b7546964ccd1ea3526e6af2271cb59.tar.bz2 |
resolved conflicts for merge of aaf8a9d8 to master
Diffstat (limited to 'docs/html/guide/topics/manifest')
-rw-r--r-- | docs/html/guide/topics/manifest/activity-element.jd | 24 | ||||
-rw-r--r-- | docs/html/guide/topics/manifest/manifest-intro.jd | 2 |
2 files changed, 13 insertions, 13 deletions
diff --git a/docs/html/guide/topics/manifest/activity-element.jd b/docs/html/guide/topics/manifest/activity-element.jd index c22d3e1..41c27c6 100644 --- a/docs/html/guide/topics/manifest/activity-element.jd +++ b/docs/html/guide/topics/manifest/activity-element.jd @@ -5,17 +5,17 @@ page.title=<activity> <dt>syntax:</dt> <dd><pre class="stx"><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"] android:<a href="#finish">finishOnTaskLaunch</a>=["true" | "false"] android:<a href="#icon">icon</a>="<i>drawable resource</i>" android:<a href="#label">label</a>="<i>string resource</i>" - android:<a href="#lmode">launchMode</a>=["multiple" | "singleTop" | + android:<a href="#lmode">launchMode</a>=["multiple" | "singleTop" | "singleTask" | "singleInstance"] android:<a href="#multi">multiprocess</a>=["true" | "false"] android:<a href="#nm">name</a>="<i>string</i>" @@ -23,16 +23,16 @@ page.title=<activity> android:<a href="#prmsn">permission</a>="<i>string</i>" android:<a href="#proc">process</a>="<i>string</i>" android:<a href="#screen">screenOrientation</a>=["unspecified" | "user" | "behind" | - "landscape" | "portrait" | + "landscape" | "portrait" | "sensor" | "nosensor"] 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"] > <!-- ##api level 3## --> + android:<a href="#theme">theme</a>="<i>resource or theme</i>" + android:<a href="#wsoft">windowSoftInputMode</a>=["stateUnspecified", + "stateUnchanged", "stateHidden", + "stateAlwaysHidden", "stateVisible", + "stateAlwaysVisible", "adjustUnspecified", + "adjustResize", "adjustPan"] > <!-- ##api level 3## --> . . . </activity></pre></dd> diff --git a/docs/html/guide/topics/manifest/manifest-intro.jd b/docs/html/guide/topics/manifest/manifest-intro.jd index 9e1b18d..efbfa5a 100644 --- a/docs/html/guide/topics/manifest/manifest-intro.jd +++ b/docs/html/guide/topics/manifest/manifest-intro.jd @@ -443,7 +443,7 @@ element. For example, an activity could be protected as follows: <permission android:name="com.example.project.DEBIT_ACCT" . . . /> . . . <application . . .> - <activity android:name="com.example.project.FreneticActivity" . . . > + <activity android:name="com.example.project.FreneticActivity" android:permission="com.example.project.DEBIT_ACCT" . . . > . . . |