Merge "docs: fixing several minor documentation bugs" into pi-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
82b0d17b39
@@ -237,7 +237,7 @@ public class DatePickerDialog extends AlertDialog implements OnClickListener,
|
||||
* @param year the selected year
|
||||
* @param month the selected month (0-11 for compatibility with
|
||||
* {@link Calendar#MONTH})
|
||||
* @param dayOfMonth th selected day of the month (1-31, depending on
|
||||
* @param dayOfMonth the selected day of the month (1-31, depending on
|
||||
* month)
|
||||
*/
|
||||
void onDateSet(DatePicker view, int year, int month, int dayOfMonth);
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<HTML>
|
||||
<BODY>
|
||||
<p>Contains classes for accessing application resources,
|
||||
such as raw asset files, colors, drawables, media or other other files
|
||||
such as raw asset files, colors, drawables, media, or other files
|
||||
in the package, plus important device configuration details
|
||||
(orientation, input types, etc.) that affect how the application may behave.</p>
|
||||
|
||||
@@ -9,4 +9,4 @@ in the package, plus important device configuration details
|
||||
href="{@docRoot}guide/topics/resources/index.html">Application Resources</a> guide.</p>
|
||||
{@more}
|
||||
</BODY>
|
||||
</HTML>
|
||||
</HTML>
|
||||
|
||||
@@ -290,7 +290,7 @@ public class CloseableLock implements AutoCloseable {
|
||||
/**
|
||||
* Release a single lock that was acquired.
|
||||
*
|
||||
* <p>Any other other that is blocked and trying to acquire a lock will get a chance
|
||||
* <p>Any other thread that is blocked and trying to acquire a lock will get a chance
|
||||
* to acquire the lock.</p>
|
||||
*
|
||||
* @throws IllegalStateException if no locks were acquired, or if the lock was already closed
|
||||
|
||||
@@ -41,8 +41,8 @@ public class DecelerateInterpolator extends BaseInterpolator implements NativeIn
|
||||
* Constructor
|
||||
*
|
||||
* @param factor Degree to which the animation should be eased. Setting factor to 1.0f produces
|
||||
* an upside-down y=x^2 parabola. Increasing factor above 1.0f makes exaggerates the
|
||||
* ease-out effect (i.e., it starts even faster and ends evens slower)
|
||||
* an upside-down y=x^2 parabola. Increasing factor above 1.0f exaggerates the
|
||||
* ease-out effect (i.e., it starts even faster and ends evens slower).
|
||||
*/
|
||||
public DecelerateInterpolator(float factor) {
|
||||
mFactor = factor;
|
||||
|
||||
Reference in New Issue
Block a user