blob: 07d0abe7f6e460e108febf19b3c154f58add6d5b [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001home=true
2@jd:body
3
4
5 <div id="mainBodyFixed">
6 <div id="mainBodyLeft">
7 <div id="homeMiddle">
Scott Main110b50c2009-06-12 14:02:42 -07008 <div id="topAnnouncement">
9 <div id="homeTitle">
10 <h2>Developer Announcements</h2>
11 </div><!-- end homeTitle -->
12 <div id="announcement-block">
13 <!-- total max width is 520px -->
14 <img src="/assets/images/home/IO-logo.png" alt="Google I/O Developer Conference 2009" width="242px" />
15 <div id="announcement" style="width:270px">
16 <p>Google I/O is a two-day developer event that will take place May 27-28 at Moscone Center, San Francisco. The agenda includes a number of great sessions on Android topics by team engineers and other developers.</p>
17 <p><a href="http://code.google.com/events/io/">Learn more &raquo;</a></p>
18 </div> <!-- end annoucement -->
19 </div> <!-- end annoucement-block -->
20 </div><!-- end topAnnouncement -->
21 <div id="carousel">
22 <div id="carouselMain">
23 <div id="bulletinImg"></div>
24 <div id="bulletinDesc"></div>
25 </div>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080026 <div class="clearer"></div>
Scott Main110b50c2009-06-12 14:02:42 -070027 <div class="app-list-container" align="center">
28 <a href="javascript:{}" id="arrow-left" onclick="" class="arrow-left-off"></a>
29 <div id="list-clip">
30 <div style="left: 0px;" id="app-list">
31 <!-- populated by buildCarousel() -->
32 </div>
33 </div><!-- end list-clip -->
34 <a href="javascript:page_right()" id="arrow-right" onclick="" class="arrow-right-on"></a>
35 <div class="clearer"></div>
36 </div><!-- end app-list container -->
37 </div><!-- end carousel -->
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080038 </div><!-- end homeMiddle -->
39
40 <div style="clear:both">&nbsp;</div>
41 </div><!-- end mainBodyLeft -->
42
43 <div id="mainBodyRight">
44 <table id="rightColumn">
45 <tr>
46 <td class="imageCell"><a href="{@docRoot}sdk/index.html"><img src="{@docRoot}assets/images/icon_download.jpg" style="padding:0" /></a></td>
47 <td>
48 <h2 class="green">Download</h2>
49 <p>The Android SDK has the tools, sample code, and docs you need to create great apps. </p>
Scott Main263ed762009-04-26 23:19:20 -070050 <p><a href="{@docRoot}sdk/{@sdkCurrent}/index.html">Learn more &raquo;</a></p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080051 </td>
52 </tr>
53 <tr>
54 <td colspan="2"><div class="seperator">&nbsp;</div></td>
55 </tr>
56 <tr>
57 <td class="imageCell"><a href="http://www.android.com/market.html"><img src="{@docRoot}assets/images/icon_market.jpg" style="padding:0" /></a></td>
58 <td>
59 <h2 class="green">Publish</h2>
60 <p>Android Market is an open service that lets you distribute your apps to handsets.</p>
61 <p><a href="http://www.android.com/market.html">Learn more &raquo;</a></p>
62 </td>
63 </tr>
64 <tr>
65 <td colspan="2"><div class="seperator">&nbsp;</div></td>
66 </tr>
67 <tr>
68 <td class="imageCell"><a href="http://source.android.com"><img src="{@docRoot}assets/images/icon_contribute.jpg" style="padding:0" /></a></td>
69 <td>
70 <h2 class="green">Contribute</h2>
71 <p>Android Open Source Project gives you access to the entire platform source.</p>
72 <p><a href="http://source.android.com">Learn more &raquo;</a></p>
73 </td>
74 </tr>
75 <tr>
76 <td colspan="2"><div class="seperator">&nbsp;</div></td>
77 </tr>
78 <tr>
79 <td class="imageCell"><a href="http://www.youtube.com/user/androiddevelopers"><img src="{@docRoot}assets/images/video-droid.png" style="padding:0" /></a></td>
80 <td>
81 <h2 class="green">Watch</h2>
82 <object width="150" height="140"><param name="movie" value="http://www.youtube.com/v/x1ZZ-R3p_w8&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/x1ZZ-R3p_w8&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="150" height="140"></embed></object>
83 <p style="margin-top:1em"><a href="http://www.youtube.com/user/androiddevelopers">More Android videos &raquo;</a></p>
84 </td>
85 </tr>
86
87 </table>
88 </div>
89 </div>
90
91<!--[if lte IE 6]>
92 <style>
93 #arrow-left {
94 margin:0 0 0 5px;
95 }
96 #arrow-right {
97 margin-left:0;
98 }
99 .app-list-container {
100 margin: 37px 0 0 23px;
101 }
102 div#list-clip {
103 width:468px;
104 }
105 </style>
106<![endif]-->
107
108<script type="text/javascript">
109
110// * -- carousel dictionary -- * //
111 /* layout: imgLeft, imgRight, imgTop
112 icon: image for carousel entry. cropped (height:70px, width:90px)
113 name: string for carousel entry
114 img: image for bulletin post. cropped (height: 170, width:230px)
115 title: header for bulletin (optional, insert "" value to skip
116 desc: the bulletin post. must include html tags.
117 */
118
119 var droidList = {
120 'sdk': {
121 'layout':"imgLeft",
122 'icon':"sdk-small.png",
Dirk Dougherty3f9de8b2009-05-22 16:04:18 -0700123 'name':"SDK 1.5 r2",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800124 'img':"sdk-large.png",
Dirk Dougherty3f9de8b2009-05-22 16:04:18 -0700125 'title':"Android 1.5 SDK",
126 'desc': "<p>Android 1.5 SDK is now available. It includes new APIs for Android 1.5, updated developer tools, multiple platform versions, and a Google APIs add-on.</p><p><a href='{@docRoot}sdk/1.5_r2/index.html'>Download Android 1.5 SDK</a></p>"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800127 },
128
129 'mapskey': {
130 'layout':"imgLeft",
131 'icon':"maps-small.png",
132 'name':"Maps API Key",
133 'img':"maps-large.png",
134 'title':"Maps API Key",
Scott Main263ed762009-04-26 23:19:20 -0700135 'desc':"<p>If you're writing an Android application that uses Google Maps (with MapView), you must register your application to obtain a Maps API Key. Without the key, your maps application will not work on Android devices. Obtaining a key requires just a couple of steps.</p><p><a href='http://code.google.com/android/add-ons/google-apis/maps-overview.html'>Learn more &raquo;</a></p>"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800136 },
137
138 'market': {
139 'layout':"imgTop",
140 'icon':"market-small.png",
141 'name':"Android Market",
142 'img':"market-large.png",
143 'title':"",
144 'desc': "<p>Android Market helps you get your applications into the hands of users. The beta version of Market is now open and you can begin sharing your applications with users of the first Android-powered phone, the T-Mobile G1.</p><p><a href='http://market.android.com/publish/'>Publish your Android app on Market &raquo;</a></p>"
145 },
146
147 'devphone': {
148 'layout':"imgLeft",
149 'icon':"devphone-small.png",
150 'name':"Dev Phone 1",
151 'img':"devphone-large.png",
152 'title':"Android Dev Phone 1",
153 'desc': "<p>Run and debug your Android applications directly on this device. Modify and rebuild the Android operating system, and flash it onto the phone. The Android Dev Phone 1 is carrier independent, and available for purchase by any developer registered with <a href='http://market.android.com/publish'>Android Market</a>.</p><p><a href='/guide/developing/device.html#dev-phone-1'>Learn more about the Android Dev Phone 1 &raquo;</a></p>"
154 }
155
156 }
157</script>
158<script type="text/javascript" src="{@docRoot}assets/carousel.js"></script>
159<script type="text/javascript">
160 initCarousel("sdk");
161</script>