summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorScott Main <smain@google.com>2009-10-16 14:44:05 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2009-10-16 14:44:05 -0700
commit0712f24dbf14473cb55e5b609c3418610b77d406 (patch)
treeed9d1e7dc36f924b34fa44a4289002a9d1d39e8a /docs
parent4b9dbdfa1805cfb5be1eca2d26ca18a01724839a (diff)
parenta486f554aa494dfeea4d63fde0d533ea9e1cfe2f (diff)
downloadframeworks_base-0712f24dbf14473cb55e5b609c3418610b77d406.zip
frameworks_base-0712f24dbf14473cb55e5b609c3418610b77d406.tar.gz
frameworks_base-0712f24dbf14473cb55e5b609c3418610b77d406.tar.bz2
am a486f554: am 7f66dbce: Merge change Ic37381fb into eclair
Merge commit 'a486f554aa494dfeea4d63fde0d533ea9e1cfe2f' into eclair-mr2-plus-aosp * commit 'a486f554aa494dfeea4d63fde0d533ea9e1cfe2f': docs: fix doc error in dialog example snippet
Diffstat (limited to 'docs')
-rw-r--r--docs/html/guide/topics/ui/dialogs.jd2
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 c0c0b1b..4e4ca14 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));