From 73840a4fa8a32ec7fc003f72f84033919e82c578 Mon Sep 17 00:00:00 2001 From: Dan Dascalescu Date: Tue, 12 Jan 2016 16:24:40 -0800 Subject: [PATCH] Fix typo "required by you" -> of bug: 26190340 Change-Id: I540ce90fcf7ec758a4d7f7bfad46f1616d49adaf --- docs/html/guide/components/activities.jd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/html/guide/components/activities.jd b/docs/html/guide/components/activities.jd index 5e6917bac0f5a..b4d47a8c88fc2 100644 --- a/docs/html/guide/components/activities.jd +++ b/docs/html/guide/components/activities.jd @@ -661,7 +661,7 @@ that should be saved. Almost every widget in the Android framework implements th appropriate, such that any visible changes to the UI are automatically saved and restored when your activity is recreated. For example, the {@link android.widget.EditText} widget saves any text entered by the user and the {@link android.widget.CheckBox} widget saves whether it's checked or -not. The only work required by you is to provide a unique ID (with the {@code android:id} attribute) for each widget you want to save its state. If a widget does not have an ID, then the system cannot save its state.