blob: d82deec814ea871ec8842990d300f71678ad0556 [file] [log] [blame]
Scott Main50e990c2012-06-21 17:14:39 -07001fullpage=true
2no_footer_links=true
3carousel=true
Scott Main633de7b2012-02-01 14:49:32 -08004page.metaDescription=The official site for Android developers. Provides the Android SDK and documentation for app developers and designers.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08005@jd:body
6
7
Scott Main50e990c2012-06-21 17:14:39 -07008<div class="wrap">
9 <!-- Slideshow -->
10 <div class="slideshow-container slideshow-home col-16">
11 <a href="" class="slideshow-prev">Prev</a>
12 <a href="" class="slideshow-next">Next</a>
13 <div class="frame">
14 <ul>
15 <li class="item carousel-home">
Scott Main86c9d472013-06-21 20:39:41 -070016 <div class="content-left col-9">
17 <a href="{@docRoot}about/versions/jelly-bean.html"><img src="{@docRoot}images/home/android-jellybean.png" ></a>
18 </div>
19 <div class="content-right col-6">
20 <h1>More Jelly Beans!</h1>
21 <p>Android 4.3 is now available with a variety of performance improvements
22 and new developer features. </p>
23 <p>With this release, Android now supports Bluetooth Low Energy for battery
24 savings with wireless peripherals, OpenGL ES 3.0 for the most advanced mobile 3D
25 graphics, MPEG DASH support for high quality media streaming, and much more.</p>
26 <p><a href="{@docRoot}about/versions/jelly-bean.html" class="button">Learn More</a></p>
27 </div>
28 </li>
29 <li class="item carousel-home">
Scott Main248573b2013-05-29 12:27:09 -070030 <div class="content-left col-11" style="padding-top:10px;">
31 <a href="{@docRoot}channels/io2013.html">
32 <img src="{@docRoot}images/home/io-videos-2013.png" style="margin:60px 0 0;
33 box-shadow: 3px 10px 18px 1px #999;">
34 </a>
Scott Maind51eeba2013-02-25 10:19:11 -080035 </div>
Scott Main248573b2013-05-29 12:27:09 -070036 <div class="content-right col-4">
Scott Main99947692013-05-20 11:54:36 -070037 <h1>Watch the Android talks from Google I/O</h1>
38 <p>If you weren't able to attend Google I/O in person or couldn't make it
39 to all the talks, you can catch up on the action
40 with all the recordings, brought to you by
Scott Maina196e342013-05-07 14:15:42 -070041 <a href="http://developers.google.com/live">Google Developers Live</a>.</p>
Scott Main248573b2013-05-29 12:27:09 -070042 <p><a href="{@docRoot}channels/io2013.html" class="button"
Scott Main99947692013-05-20 11:54:36 -070043 >See the Android talks</a></p>
Scott Maind51eeba2013-02-25 10:19:11 -080044 </div>
45 </li>
Scott Main248573b2013-05-29 12:27:09 -070046
47
48
Scott Maind51eeba2013-02-25 10:19:11 -080049 <li class="item carousel-home">
Dirk Dougherty20d47ca2013-01-14 17:42:30 -080050 <div class="content-left col-11" style="padding-top:65px;">
51 <script src="//ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js"></script>
52 <div style="box-shadow: 3px 10px 18px 1px #999;width:600px;height:338px">
53 <div id="ytapiplayer">
54 You need Flash player 8+ and JavaScript enabled to view this video.
55 </div>
56 <script type="text/javascript">
57 var params = { allowScriptAccess: "always" };
58 var atts = { id: "ytapiplayer" };
Dirk Dougherty35592bd62013-06-03 18:39:52 -070059 swfobject.embedSWF("//www.youtube.com/v/O8i4HUw7JYA?enablejsapi=1&playerapiid=ytplayer&version=3&HD=1;rel=0;showinfo=0;modestbranding;origin=developer.android.com;autohide=1",
Dirk Dougherty20d47ca2013-01-14 17:42:30 -080060 "ytapiplayer", "600", "338", "8", null, null, params, atts);
61
62 // Callback used to pause/resume carousel based on video state
63 function onytplayerStateChange(newState) {
64 var isPaused = $("#pauseButton").hasClass("paused");
65 if ((newState == 1) || (newState == 3)) {
66 // if playing or buffering, pause the carousel
67 if (!isPaused) {
68 $("#pauseButton").click();
69 }
70 } else {
71 // otherwise, make sure carousel is running
72 if (isPaused) {
73 $("#pauseButton").click();
74 }
75 }
76 }
77
78 // Callback received when YouTube player loads to setup callback (above)
79 function onYouTubePlayerReady(playerId) {
80 var ytplayer = document.getElementById("ytapiplayer");
81 ytplayer.addEventListener("onStateChange", "onytplayerStateChange");
82 }
83
84 </script>
85 </div>
86 </div>
87 <div class="content-right col-4">
Dirk Dougherty35592bd62013-06-03 18:39:52 -070088 <h1 style="white-space:nowrap;line-height:1.2em;">Developer Story: <br />redBus.in</h1>
89 <p>Bangalore-based developers redBus.in talk about how Android is helping them deliver a superior booking and travel experience to millions of daily bus riders in India.</p>
Dirk Dougherty20d47ca2013-01-14 17:42:30 -080090 </div>
91 </li>
92 <li class="item carousel-home">
Scott Main50e990c2012-06-21 17:14:39 -070093 <div class="content-left col-10">
94 <img src="{@docRoot}images/home/design.png" style="margin-top:30px">
95 </div>
Scott Main32c1c5c2012-06-22 21:21:35 -070096 <div class="content-right col-5">
Scott Main50e990c2012-06-21 17:14:39 -070097 <h1>Make your Android apps<br>look great</h1>
98 <p>New templates in the design guide make it easier than ever to design apps
99that are beautiful and easy to use.</p>
Scott Main88eee992012-01-03 12:06:03 -0800100 <p><a href="{@docRoot}design/index.html" class="button">Learn More</a></p>
Scott Main50e990c2012-06-21 17:14:39 -0700101 </div>
102 </li>
103 <li class="item carousel-home">
104 <div class="content-left col-10">
Scott Main88eee992012-01-03 12:06:03 -0800105 <img src="{@docRoot}images/home/google-play.png"
Scott Main50e990c2012-06-21 17:14:39 -0700106 style="margin-top:50px">
107 </div>
Scott Main32c1c5c2012-06-22 21:21:35 -0700108 <div class="content-right col-5">
Scott Main50e990c2012-06-21 17:14:39 -0700109 <h1>Publish your apps<br>in Google Play</h1>
110 <p>The most visited store in the world for Android apps. Cloud-connected and always synced, it's never been easier for users to find and download your apps.</p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800111
Scott Main32c1c5c2012-06-22 21:21:35 -0700112 <p><a href="{@docRoot}distribute/index.html" class="button">Learn More</a></p>
Scott Main50e990c2012-06-21 17:14:39 -0700113 </div>
114 </li>
115 </ul>
116 </div>
117 </div>
118 <!-- /End slideshow -->
Scott Mainb1560f22012-01-26 16:14:29 -0800119
Dirk Dougherty20d47ca2013-01-14 17:42:30 -0800120 <a href="" id="pauseButton" style="display:none">pause</a>
121
Scott Main50e990c2012-06-21 17:14:39 -0700122
Scott Main50e990c2012-06-21 17:14:39 -0700123</div>
124<div class="wrap" style="padding-bottom:20px">
125 <!-- Section links -->
126 <div class="home-sections">
127 <ul>
128 <li><a href="{@docRoot}about/index.html">About Android</a></li>
129 <li><a href="{@docRoot}sdk/index.html">Get the SDK</a></li>
130 <li><a href="http://source.android.com">Open Source</a></li>
131 <li><a href="{@docRoot}support.html">Support</a></li>
132 <li class="last"><a href="{@docRoot}legal.html">Legal</a></li>
133 </ul>
134 </div>
135 <!-- /Section links -->
136</div>