diff options
| author | 2009-10-16 17:23:11 -0400 | |
|---|---|---|
| committer | 2009-10-16 17:23:11 -0400 | |
| commit | 7f66dbcec37bdb154db0e7c95c73ecd257bc38c9 (patch) | |
| tree | b8a61bd045de42fb1e3f1570e422d50311dfbdec | |
| parent | c75348a9384a5310bb34bf02cafd0076630f4a28 (diff) | |
| parent | c37381fbeeaa5b8fa77c87e26586525d658a23d7 (diff) | |
Merge change Ic37381fb into eclair
* changes:
docs: fix doc error in dialog example snippet
| -rw-r--r-- | docs/html/guide/topics/ui/dialogs.jd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/html/guide/topics/ui/dialogs.jd b/docs/html/guide/topics/ui/dialogs.jd index c0c0b1bc58da..4e4ca14bb821 100644 --- a/docs/html/guide/topics/ui/dialogs.jd +++ b/docs/html/guide/topics/ui/dialogs.jd @@ -624,7 +624,7 @@ AlertDialog.Builder builder; AlertDialog alertDialog; Context mContext = getApplicationContext(); -LayoutInflater inflater = (LayoutInflater) mContext.getSystemService(LAYOUT_INFLATER); +LayoutInflater inflater = (LayoutInflater) mContext.getSystemService(LAYOUT_INFLATER_SERVICE); View layout = inflater.inflate(R.layout.custom_dialog, (ViewGroup) findViewById(R.id.layout_root)); |