diff options
| author | 2010-08-24 23:06:35 -0700 | |
|---|---|---|
| committer | 2010-08-24 23:08:44 -0700 | |
| commit | 0243caff24ee3b5e4c5e55c888ebb4cdf75b3602 (patch) | |
| tree | 27c49483c9b3ad2d199130b458ff1bfc266134a3 | |
| parent | a0b436234d999a05b1ddb571dea3956ad5139a4c (diff) | |
Fixed typo in View id documentation
Change-Id: I2df4f0ff9dc0b229349c8accbd6ef962f1d345bb
| -rw-r--r-- | core/java/android/view/View.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/java/android/view/View.java b/core/java/android/view/View.java index b565fc61f9e5..616128d71d65 100644 --- a/core/java/android/view/View.java +++ b/core/java/android/view/View.java @@ -262,7 +262,8 @@ import java.util.WeakHashMap; * <ul> * <li>Define a Button in the layout file and assign it a unique ID. * <pre> - * <Button id="@+id/my_button" + * <Button + * android:id="@+id/my_button" * android:layout_width="wrap_content" * android:layout_height="wrap_content" * android:text="@string/my_button_text"/> |