summaryrefslogtreecommitdiffstats
path: root/core/java/android/view/View.java
diff options
context:
space:
mode:
authorRomain Guy <romainguy@google.com>2012-10-15 12:31:57 -0700
committerRomain Guy <romainguy@google.com>2012-10-15 12:31:57 -0700
commitedc900528937cd03f0d3a94fdf73d019324a2054 (patch)
tree204eeeabaccd33af57dec522dcf08e988d4a0a59 /core/java/android/view/View.java
parenta30d969401a8533a5a341664421ba9b1e150bac3 (diff)
downloadframeworks_base-edc900528937cd03f0d3a94fdf73d019324a2054.zip
frameworks_base-edc900528937cd03f0d3a94fdf73d019324a2054.tar.gz
frameworks_base-edc900528937cd03f0d3a94fdf73d019324a2054.tar.bz2
Update javadoc
Some View.post*() methods can be invoked from arbitrary thread independently of whether the View is attached to a window. Change-Id: I587b5909ab8b06665978d001548d56c8c22043c1
Diffstat (limited to 'core/java/android/view/View.java')
-rw-r--r--core/java/android/view/View.java15
1 files changed, 0 insertions, 15 deletions
diff --git a/core/java/android/view/View.java b/core/java/android/view/View.java
index 946965b..158e0c0 100644
--- a/core/java/android/view/View.java
+++ b/core/java/android/view/View.java
@@ -10515,9 +10515,6 @@ public class View implements Drawable.Callback, KeyEvent.Callback,
* <p>Causes the Runnable to be added to the message queue.
* The runnable will be run on the user interface thread.</p>
*
- * <p>This method can be invoked from outside of the UI thread
- * only when this View is attached to a window.</p>
- *
* @param action The Runnable that will be executed.
*
* @return Returns true if the Runnable was successfully placed in to the
@@ -10542,9 +10539,6 @@ public class View implements Drawable.Callback, KeyEvent.Callback,
* after the specified amount of time elapses.
* The runnable will be run on the user interface thread.</p>
*
- * <p>This method can be invoked from outside of the UI thread
- * only when this View is attached to a window.</p>
- *
* @param action The Runnable that will be executed.
* @param delayMillis The delay (in milliseconds) until the Runnable
* will be executed.
@@ -10573,9 +10567,6 @@ public class View implements Drawable.Callback, KeyEvent.Callback,
* <p>Causes the Runnable to execute on the next animation time step.
* The runnable will be run on the user interface thread.</p>
*
- * <p>This method can be invoked from outside of the UI thread
- * only when this View is attached to a window.</p>
- *
* @param action The Runnable that will be executed.
*
* @see #postOnAnimationDelayed
@@ -10597,9 +10588,6 @@ public class View implements Drawable.Callback, KeyEvent.Callback,
* after the specified amount of time elapses.
* The runnable will be run on the user interface thread.</p>
*
- * <p>This method can be invoked from outside of the UI thread
- * only when this View is attached to a window.</p>
- *
* @param action The Runnable that will be executed.
* @param delayMillis The delay (in milliseconds) until the Runnable
* will be executed.
@@ -10621,9 +10609,6 @@ public class View implements Drawable.Callback, KeyEvent.Callback,
/**
* <p>Removes the specified Runnable from the message queue.</p>
*
- * <p>This method can be invoked from outside of the UI thread
- * only when this View is attached to a window.</p>
- *
* @param action The Runnable to remove from the message handling queue
*
* @return true if this view could ask the Handler to remove the Runnable,