@@ -1183,7 +1183,7 @@ public void setImageViewUri(int viewId, Uri uri) {
11831183 /**
11841184 * Equivalent to calling ImageView.setImageBitmap
11851185 *
1186- * @param viewId The id of the view whose drawable should change
1186+ * @param viewId The id of the view whose bitmap should change
11871187 * @param bitmap The new Bitmap for the drawable
11881188 */
11891189 public void setImageViewBitmap (int viewId , Bitmap bitmap ) {
@@ -1206,7 +1206,7 @@ public void setEmptyView(int viewId, int emptyViewId) {
12061206 * and {@link Chronometer#start Chronometer.start()} or
12071207 * {@link Chronometer#stop Chronometer.stop()}.
12081208 *
1209- * @param viewId The id of the view whose text should change
1209+ * @param viewId The id of the {@link Chronometer} to change
12101210 * @param base The time at which the timer would have read 0:00. This
12111211 * time should be based off of
12121212 * {@link android.os.SystemClock#elapsedRealtime SystemClock.elapsedRealtime()}.
@@ -1227,7 +1227,7 @@ public void setChronometer(int viewId, long base, String format, boolean started
12271227 *
12281228 * If indeterminate is true, then the values for max and progress are ignored.
12291229 *
1230- * @param viewId The id of the view whose text should change
1230+ * @param viewId The id of the {@link ProgressBar} to change
12311231 * @param max The 100% value for the progress bar
12321232 * @param progress The current value of the progress bar.
12331233 * @param indeterminate True if the progress bar is indeterminate,
@@ -1333,7 +1333,7 @@ public void setDrawableParameters(int viewId, boolean targetBackground, int alph
13331333 /**
13341334 * Equivalent to calling {@link android.widget.TextView#setTextColor(int)}.
13351335 *
1336- * @param viewId The id of the view whose text should change
1336+ * @param viewId The id of the view whose text color should change
13371337 * @param color Sets the text color for all the states (normal, selected,
13381338 * focused) to be this color.
13391339 */
@@ -1346,7 +1346,7 @@ public void setTextColor(int viewId, int color) {
13461346 *
13471347 * @param appWidgetId The id of the app widget which contains the specified view. (This
13481348 * parameter is ignored in this deprecated method)
1349- * @param viewId The id of the view whose text should change
1349+ * @param viewId The id of the {@link AbsListView}
13501350 * @param intent The intent of the service which will be
13511351 * providing data to the RemoteViewsAdapter
13521352 * @deprecated This method has been deprecated. See
@@ -1361,7 +1361,7 @@ public void setRemoteAdapter(int appWidgetId, int viewId, Intent intent) {
13611361 * Equivalent to calling {@link android.widget.AbsListView#setRemoteViewsAdapter(Intent)}.
13621362 * Can only be used for App Widgets.
13631363 *
1364- * @param viewId The id of the view whose text should change
1364+ * @param viewId The id of the {@link AbsListView}
13651365 * @param intent The intent of the service which will be
13661366 * providing data to the RemoteViewsAdapter
13671367 */
@@ -1372,7 +1372,7 @@ public void setRemoteAdapter(int viewId, Intent intent) {
13721372 /**
13731373 * Equivalent to calling {@link android.widget.AbsListView#smoothScrollToPosition(int, int)}.
13741374 *
1375- * @param viewId The id of the view whose text should change
1375+ * @param viewId The id of the view to change
13761376 * @param position Scroll to this adapter position
13771377 */
13781378 public void setScrollPosition (int viewId , int position ) {
@@ -1382,7 +1382,7 @@ public void setScrollPosition(int viewId, int position) {
13821382 /**
13831383 * Equivalent to calling {@link android.widget.AbsListView#smoothScrollToPosition(int, int)}.
13841384 *
1385- * @param viewId The id of the view whose text should change
1385+ * @param viewId The id of the view to change
13861386 * @param offset Scroll by this adapter position offset
13871387 */
13881388 public void setRelativeScrollPosition (int viewId , int offset ) {
@@ -1392,7 +1392,7 @@ public void setRelativeScrollPosition(int viewId, int offset) {
13921392 /**
13931393 * Call a method taking one boolean on a view in the layout for this RemoteViews.
13941394 *
1395- * @param viewId The id of the view whose text should change
1395+ * @param viewId The id of the view on which to call the method.
13961396 * @param methodName The name of the method to call.
13971397 * @param value The value to pass to the method.
13981398 */
@@ -1403,7 +1403,7 @@ public void setBoolean(int viewId, String methodName, boolean value) {
14031403 /**
14041404 * Call a method taking one byte on a view in the layout for this RemoteViews.
14051405 *
1406- * @param viewId The id of the view whose text should change
1406+ * @param viewId The id of the view on which to call the method.
14071407 * @param methodName The name of the method to call.
14081408 * @param value The value to pass to the method.
14091409 */
@@ -1414,7 +1414,7 @@ public void setByte(int viewId, String methodName, byte value) {
14141414 /**
14151415 * Call a method taking one short on a view in the layout for this RemoteViews.
14161416 *
1417- * @param viewId The id of the view whose text should change
1417+ * @param viewId The id of the view on which to call the method.
14181418 * @param methodName The name of the method to call.
14191419 * @param value The value to pass to the method.
14201420 */
@@ -1425,7 +1425,7 @@ public void setShort(int viewId, String methodName, short value) {
14251425 /**
14261426 * Call a method taking one int on a view in the layout for this RemoteViews.
14271427 *
1428- * @param viewId The id of the view whose text should change
1428+ * @param viewId The id of the view on which to call the method.
14291429 * @param methodName The name of the method to call.
14301430 * @param value The value to pass to the method.
14311431 */
@@ -1436,7 +1436,7 @@ public void setInt(int viewId, String methodName, int value) {
14361436 /**
14371437 * Call a method taking one long on a view in the layout for this RemoteViews.
14381438 *
1439- * @param viewId The id of the view whose text should change
1439+ * @param viewId The id of the view on which to call the method.
14401440 * @param methodName The name of the method to call.
14411441 * @param value The value to pass to the method.
14421442 */
@@ -1447,7 +1447,7 @@ public void setLong(int viewId, String methodName, long value) {
14471447 /**
14481448 * Call a method taking one float on a view in the layout for this RemoteViews.
14491449 *
1450- * @param viewId The id of the view whose text should change
1450+ * @param viewId The id of the view on which to call the method.
14511451 * @param methodName The name of the method to call.
14521452 * @param value The value to pass to the method.
14531453 */
@@ -1458,7 +1458,7 @@ public void setFloat(int viewId, String methodName, float value) {
14581458 /**
14591459 * Call a method taking one double on a view in the layout for this RemoteViews.
14601460 *
1461- * @param viewId The id of the view whose text should change
1461+ * @param viewId The id of the view on which to call the method.
14621462 * @param methodName The name of the method to call.
14631463 * @param value The value to pass to the method.
14641464 */
@@ -1469,7 +1469,7 @@ public void setDouble(int viewId, String methodName, double value) {
14691469 /**
14701470 * Call a method taking one char on a view in the layout for this RemoteViews.
14711471 *
1472- * @param viewId The id of the view whose text should change
1472+ * @param viewId The id of the view on which to call the method.
14731473 * @param methodName The name of the method to call.
14741474 * @param value The value to pass to the method.
14751475 */
@@ -1480,7 +1480,7 @@ public void setChar(int viewId, String methodName, char value) {
14801480 /**
14811481 * Call a method taking one String on a view in the layout for this RemoteViews.
14821482 *
1483- * @param viewId The id of the view whose text should change
1483+ * @param viewId The id of the view on which to call the method.
14841484 * @param methodName The name of the method to call.
14851485 * @param value The value to pass to the method.
14861486 */
@@ -1491,7 +1491,7 @@ public void setString(int viewId, String methodName, String value) {
14911491 /**
14921492 * Call a method taking one CharSequence on a view in the layout for this RemoteViews.
14931493 *
1494- * @param viewId The id of the view whose text should change
1494+ * @param viewId The id of the view on which to call the method.
14951495 * @param methodName The name of the method to call.
14961496 * @param value The value to pass to the method.
14971497 */
@@ -1502,7 +1502,7 @@ public void setCharSequence(int viewId, String methodName, CharSequence value) {
15021502 /**
15031503 * Call a method taking one Uri on a view in the layout for this RemoteViews.
15041504 *
1505- * @param viewId The id of the view whose text should change
1505+ * @param viewId The id of the view on which to call the method.
15061506 * @param methodName The name of the method to call.
15071507 * @param value The value to pass to the method.
15081508 */
@@ -1516,7 +1516,7 @@ public void setUri(int viewId, String methodName, Uri value) {
15161516 * <p class="note">The bitmap will be flattened into the parcel if this object is
15171517 * sent across processes, so it may end up using a lot of memory, and may be fairly slow.</p>
15181518 *
1519- * @param viewId The id of the view whose text should change
1519+ * @param viewId The id of the view on which to call the method.
15201520 * @param methodName The name of the method to call.
15211521 * @param value The value to pass to the method.
15221522 */
@@ -1527,7 +1527,7 @@ public void setBitmap(int viewId, String methodName, Bitmap value) {
15271527 /**
15281528 * Call a method taking one Bundle on a view in the layout for this RemoteViews.
15291529 *
1530- * @param viewId The id of the view whose text should change
1530+ * @param viewId The id of the view on which to call the method.
15311531 * @param methodName The name of the method to call.
15321532 * @param value The value to pass to the method.
15331533 */
@@ -1536,10 +1536,11 @@ public void setBundle(int viewId, String methodName, Bundle value) {
15361536 }
15371537
15381538 /**
1539+ * Call a method taking one Intent on a view in the layout for this RemoteViews.
15391540 *
1540- * @param viewId
1541- * @param methodName
1542- * @param value
1541+ * @param viewId The id of the view on which to call the method.
1542+ * @param methodName The name of the method to call.
1543+ * @param value The {@link android.content.Intent} to pass the method.
15431544 */
15441545 public void setIntent (int viewId , String methodName , Intent value ) {
15451546 addAction (new ReflectionAction (viewId , methodName , ReflectionAction .INTENT , value ));
0 commit comments