Home
last modified time | relevance | path

Searched refs:starting (Results 1 – 25 of 87) sorted by relevance

1234

/frameworks/base/services/java/com/android/server/am/
DCompatModePackages.java299 ActivityRecord starting = mService.mMainStack.topRunningActivityLocked(null); in setPackageScreenCompatModeLocked() local
307 if (starting != null && a == starting && a.visible) { in setPackageScreenCompatModeLocked()
308 a.startFreezingScreenLocked(starting.app, in setPackageScreenCompatModeLocked()
330 if (starting != null) { in setPackageScreenCompatModeLocked()
331 mService.mMainStack.ensureActivityConfigurationLocked(starting, 0); in setPackageScreenCompatModeLocked()
334 mService.mMainStack.ensureActivitiesVisibleLocked(starting, 0); in setPackageScreenCompatModeLocked()
DProcessRecord.java54 boolean starting; // True if the process is being started field in ProcessRecord
178 pw.print(starting); pw.print(" lastPss="); pw.println(lastPss); in dump()
DActivityStack.java1086 ActivityRecord starting, String onlyThisProcess, int configChanges) { in ensureActivitiesVisibleLocked() argument
1114 if (r != starting && doThisProcess) { in ensureActivitiesVisibleLocked()
1126 if (r != starting) { in ensureActivitiesVisibleLocked()
1134 if (r != starting) { in ensureActivitiesVisibleLocked()
1150 if (r.state != ActivityState.RESUMED && r != starting) { in ensureActivitiesVisibleLocked()
1229 final void ensureActivitiesVisibleLocked(ActivityRecord starting, in ensureActivitiesVisibleLocked() argument
1233 ensureActivitiesVisibleLocked(r, starting, null, configChanges); in ensureActivitiesVisibleLocked()
/frameworks/base/docs/html/guide/topics/graphics/
Dview-animation.jd30 set of parameters specific for that transformation (starting size and ending size for size
31 change, starting angle and ending angle for rotation, and so on), and also a set of common
103 <p>As an alternative to <code>startAnimation()</code>, you can define a starting time for the
Dprop-animation.jd131 starting and ending values for the property that you want to animate, along with the duration of
149 property that you are animating, based on the interpolated fraction, the starting value, and the
442 that is used to obtain the starting value of the animation. The getter function must be in the
447 operate on the same type as the starting and ending values that you specify to {@link
898 starting with Android 3.1, you should save the XML files for property animations in the {@code
940 before starting the animation set. Calling {@link android.animation.AnimatorSet#setTarget
/frameworks/base/docs/html/guide/basics/
Dappmodel.jd55 starting an activity Intent with the {@link android.content.Intent#FLAG_ACTIVITY_NEW_TASK
58 will run in the same task as the activity that is starting it (unless that
62 to the foreground instead of starting a new task.</p>
83 <p>When starting a new activity without the
87 activity that is starting it. However, if the NEW_TASK flag is being used,
134 an impact on tasks; it just avoids starting the same activity multiple times
/frameworks/base/docs/html/guide/developing/tools/
DMonkeyImage.jd214 The horizontal position of the pixel, starting with 0 at the left of the screen in the
221 The vertical position of the pixel, starting with 0 at the top of the screen in the
265 The horizontal position of the pixel, starting with 0 at the left of the screen in the
272 The vertical position of the pixel, starting with 0 at the top of the screen in the
/frameworks/base/docs/html/resources/articles/
Dzipalign.jd51 <li>The ADT plugin for Eclipse (starting from version 0.9.3) will automatically
61 <li>The <em>Ant</em> build script (starting from Android 1.6) can align
Dservice-api-changes-starting-with.jd1 page.title=Service API changes starting with Android 2.0
31 …needs memory elsewhere. The main way applications get around this is by starting a Service compone…
160 <img src="images/service-api-changes-starting-with_runningservices.png" width="192" height="320" al…
168 <img src="images/service-api-changes-starting-with_stopservice.png" height="320" width="192" alt="S…
Dusing-webviews.jd38 starting a new activity, or it can be used to fetch data from a
Dmultitasking-android-way.jd48 … parts of the application the user is aware of (the Activities), and re-starting them with informa…
59 … am done." An application controls when its service runs by explicitly starting and stopping the …
60 <p>While services do provide a rich client-server model, its use is optional. Upon starting an app…
Dfaster-screen-orientation-change.jd106 // The activity is starting for the first time, load the photos from Flickr
Dlayout-tricks-merge.jd197 <li>When inflating a layout starting with a <code>&lt;merge /&gt;</code>, you <strong>must</strong>
/frameworks/base/docs/html/resources/tutorials/notepad/
Dindex.jd54 tutorial before starting this one.</p>
70 the starting points for each of the exercises, while the
Dnotepad-index.jd69 the starting points for each of the exercises, while the
/frameworks/base/docs/html/guide/developing/debugging/
Ddebugging-projects.jd22 Eclipse also takes care of starting the ADB host daemon for you, so you do not have to run this
/frameworks/base/docs/html/resources/faq/
Dframework.jd14 running before starting it?</a></li>
127 <h2>How can I check if an Activity is already running before starting
/frameworks/base/docs/html/guide/practices/ui_guidelines/
Dactivity_task_design.jd138 sending data, starting a voice command, or performing some other type
330 starting an activity that defines itself as a new task. Maps and
345 shows how the system responds to user actions such as starting
355 Home is the starting place for most applications. (Some applications
777 starting the root activity again for that task: choose Home
874 before starting the activity, or catch an exception if starting the
951 procedure. These are examples of starting an activity
995 already has a well-defined starting point, so probably does not need
/frameworks/base/docs/html/resources/samples/
Dget.jd52 create a project for the "API Demos" sample app by starting a new Android
/frameworks/base/docs/html/guide/topics/fundamentals/
Dservices.jd55 …f="{@docRoot}resources/articles/service-api-changes-starting-with.html">Service API changes starti…
102 an activity&mdash;by starting it with an {@link android.content.Intent}. However, you can declare
246 about <a href="#StartingAService">starting a service</a> is discussed below.</p>
402 Toast.makeText(this, "service starting", Toast.LENGTH_SHORT).show();
474 Toast.makeText(this, "service starting", Toast.LENGTH_SHORT).show();
786 …// The service is starting, due to a call to {@link android.content.Context#startService startServ…
/frameworks/base/docs/html/guide/topics/security/
Dsecurity.jd159 <li>When starting an activity, to prevent applications from launching
164 <li>Binding to or starting a service.</li>
377 <p>The solution to this problem is per-URI permissions: when starting an
/frameworks/base/docs/html/guide/tutorials/notepad/
Dnotepad-index.jd69 the starting points for each of the exercises, while the
/frameworks/base/docs/html/guide/practices/design/
Dseamlessness.jd173 you're starting from the same UI base as all the other applications. For all
214 option</a> when starting the emulator.</p>
Dresponsiveness.jd114 broadcast. As a side note, you should also avoid starting an Activity from an
/frameworks/base/docs/html/guide/developing/devices/
Demulator.jd12 <li><a href="#starting">Starting and Stopping the Emulator</a></li>
13 <li><a href="#starting">Android Virtual Devices and the Emulator</a></li>
119 <p>To specify the AVD you want to load when starting the emulator, you use the
132 <a name="starting"></a>
444 …n copies the contents of the file at <code>-inidata</code> data to the image file before starting.
596 before starting the emulation. </td>
1100 <p>When starting the emulator at the command line, you can also use the
1111 the <code>-http-proxy &lt;proxy&gt;</code> option when starting the emulator, to
1757 …S X, if you see an error &quot;Warning: No DNS servers found&quot; when starting the emulator, che…

1234