diff options
author | Scott Main <smain@google.com> | 2014-02-26 10:34:54 -0800 |
---|---|---|
committer | Scott Main <smain@google.com> | 2014-02-26 10:34:54 -0800 |
commit | 52d5190052d53ee7c518086ac3c930993188d18f (patch) | |
tree | 4bd22cf19276fe966c33f5c2705865547d56fa5a /docs/html/guide/topics/ui/controls | |
parent | 25b44ae684295b53ac7ba15d827fc03c51aee37b (diff) | |
download | frameworks_base-52d5190052d53ee7c518086ac3c930993188d18f.zip frameworks_base-52d5190052d53ee7c518086ac3c930993188d18f.tar.gz frameworks_base-52d5190052d53ee7c518086ac3c930993188d18f.tar.bz2 |
fix typos
Change-Id: I28bcbf5ae5fade081d9b71701f5568145d700e9c
Diffstat (limited to 'docs/html/guide/topics/ui/controls')
-rw-r--r-- | docs/html/guide/topics/ui/controls/button.jd | 2 | ||||
-rw-r--r-- | docs/html/guide/topics/ui/controls/togglebutton.jd | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/html/guide/topics/ui/controls/button.jd b/docs/html/guide/topics/ui/controls/button.jd index 41b67b7..cb274ae 100644 --- a/docs/html/guide/topics/ui/controls/button.jd +++ b/docs/html/guide/topics/ui/controls/button.jd @@ -113,7 +113,7 @@ android.view.View} that was clicked)</li> <h3 id="ClickListener">Using an OnClickListener</h3> -<p>You can also declare the click event handler pragmatically rather than in an XML layout. This +<p>You can also declare the click event handler programmatically rather than in an XML layout. This might be necessary if you instantiate the {@link android.widget.Button} at runtime or you need to declare the click behavior in a {@link android.app.Fragment} subclass.</p> diff --git a/docs/html/guide/topics/ui/controls/togglebutton.jd b/docs/html/guide/topics/ui/controls/togglebutton.jd index 3119cd9..5e2a551 100644 --- a/docs/html/guide/topics/ui/controls/togglebutton.jd +++ b/docs/html/guide/topics/ui/controls/togglebutton.jd @@ -99,7 +99,7 @@ android.widget.CompoundButton#toggle()} method to change the state.</p> <h3 id="ClickListener">Using an OnCheckedChangeListener</h3> -<p>You can also declare a click event handler pragmatically rather than in an XML layout. This +<p>You can also declare a click event handler programmatically rather than in an XML layout. This might be necessary if you instantiate the {@link android.widget.ToggleButton} or {@link android.widget.Switch} at runtime or you need to declare the click behavior in a {@link android.app.Fragment} subclass.</p> |