<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>BlackBerry Developer Blog &#187; native SDK development</title>
	<atom:link href="http://devblog.blackberry.com/tag/native-sdk-development-2/feed/" rel="self" type="application/rss+xml" />
	<link>http://devblog.blackberry.com</link>
	<description></description>
	<lastBuildDate>Mon, 17 Jun 2013 23:00:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='devblog.blackberry.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/9ef0a66c09615fa946c4179662398878?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>BlackBerry Developer Blog &#187; native SDK development</title>
		<link>http://devblog.blackberry.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://devblog.blackberry.com/osd.xml" title="BlackBerry Developer Blog" />
	<atom:link rel='hub' href='http://devblog.blackberry.com/?pushpress=hub'/>
		<item>
		<title>BlackBerry 10 Development 101: Native</title>
		<link>http://devblog.blackberry.com/2012/12/blackberry-development-101-native/</link>
		<comments>http://devblog.blackberry.com/2012/12/blackberry-development-101-native/#comments</comments>
		<pubDate>Thu, 13 Dec 2012 17:06:33 +0000</pubDate>
		<dc:creator>Joshua Granick</dc:creator>
				<category><![CDATA[Game Development]]></category>
		<category><![CDATA[Native SDK Development]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Blackberry]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[game development]]></category>
		<category><![CDATA[native]]></category>
		<category><![CDATA[native SDK development]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://devblog.blackberry.com/?p=12695</guid>
		<description><![CDATA[There are many ways to develop games or applications for BlackBerry 10. This is a good thing, but if you have not developed for the BlackBerry platform or you are familiar only with the older Java-based platform, it may be overwhelming. What are your options, and how do you get started? Several factors can help [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devblog.blackberry.com&#038;blog=17235680&#038;post=12695&#038;subd=rimdevblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p style="text-align:center;"><img class="aligncenter size-full wp-image-12700" alt="TITLE_IMAGE" src="http://rimdevblog.files.wordpress.com/2012/12/devblog-native-cake-e1355418336592.png?w=600&#038;h=292" width="600" height="292" /></p>
<p>There are many ways to develop games or applications for BlackBerry 10. This is a good thing, but if you have not developed for the BlackBerry platform or you are familiar only with the older Java-based platform, it may be overwhelming. What are your options, and how do you get started?</p>
<p>Several factors can help you decide which path to follow. BlackBerry 10 has four primary developer platforms, each with its own distinct style of development, advantages and frameworks you can choose from.</p>
<p>In this first blog post, we’ll provide an overview of some of the options available on our native development platform.</p>
<h3><strong>Native</strong></h3>
<p>The bedrock of a good developer platform is a high-performance, low-level native implementation – and BlackBerry 10 delivers. The native platform is POSIX-based, so everything from “int main(void) { printf(‘Hello World’); }” and up will run on the operating system.</p>
<p>Whether you are a C++ guru or you shy away from low-level code, BlackBerry 10 supports a wide variety of choices on the native development platform.</p>
<p><span id="more-12695"></span></p>
<h3><strong>Straight C/C++</strong></h3>
<p><a href="http://developer.blackberry.com/native/beta/" target="_new">http://developer.blackberry.com/native/beta/</a></p>
<p>BlackBerry 10 is based on QNX, a powerful, stable operating system that has been refined for over 30 years. Thanks to the POSIX interface, standard Unix C/C++ will run on the platform, without additional bootstrapping. You have full access to system APIs, from the networking stack to EGL and OpenGL and the flexibility to use common practices like dynamically loading libraries.</p>
<p>I personally ported a significant game framework to BlackBerry in only two days, and I have heard many more stories of developers with similar experiences on the native platform. If you like C/C++ development, BlackBerry 10 is a very exciting platform.</p>
<h3><strong>Cascades</strong></h3>
<p><a href="https://developer.blackberry.com/cascades/" target="_new">https://developer.blackberry.com/cascades/</a></p>
<p>If you are looking to create an application, Cascades is the Qt-based framework that we provide for the most natural of BlackBerry 10 experiences. Application code and rendering are handled in different threads, so even when you are doing heavy processing, the UI will run at a smooth 60 frames-per-second.</p>
<p>Many applications can be developed using C++ or using QML, or a combination of both. QML supports JavaScript, so even if you are a web developer, it can be easy to create native BlackBerry 10 applications using your existing skill-set. The BlackBerry Native SDK provides our Momentics IDE with designer support for Cascades, so you can preview and fine-tune the layout of your applications without deploying to a device or a device simulator.</p>
<h3><strong>Marmalade</strong></h3>
<p><a href="http://www.madewithmarmalade.com" target="_new">http://www.madewithmarmalade.com</a></p>
<p>We have partnered with Marmalade to provide a first-class experience for C++ developers using the Marmalade SDK. Similar to open-source solutions such as SDL and SFML, Marmalade is designed to provide a low-level compatibility layer between multiple platforms.</p>
<p>Marmalade also provides additional features &#8211; such as an optimized pipeline for art assets &#8211; tailored for every target device, as well as enterprise-level support.</p>
<h3><strong>NME</strong></h3>
<p><a href="http://www.haxenme.org" target="_new">http://www.haxenme.org</a></p>
<p>We have also partnered with NME to provide support for BlackBerry 10. Unlike the other options you have as a native developer, NME does not require that you use C or C++. Instead, NME uses a language called Haxe that is compiled to C++ automatically, giving you the performance of C++ and OpenGL while creating an environment that should feel comfortable to a Flash or Java developer.</p>
<p>NME is an open-source, cross-platform framework that makes it simple to use graphics, sound, input, networking and the other features you need for 2D games and applications, including libraries such as Flixel or Box2D. NME can also uniquely target mobile, desktop, Flash Player and HTML5.</p>
<h3><strong>cocos2d-x</strong></h3>
<p><a href="http://www.cocos2d-x.org" target="_new">http://www.cocos2d-x.org</a></p>
<p>The C++ version of the cocos2d, the popular 2D gaming framework, is available for BlackBerry 10.<br />
Similar to other versions of the library, cocos2d-x provides structured support for scene management, physics, particle effects, tiles, spritesheets and other game-specific features. Most of the framework can also be scripted using Lua or JavaScript. cocos2d-x is an open-source, cross-platform framework with support for both mobile and desktop platforms.</p>
<h3><strong>gameplay</strong></h3>
<p><a href="http://www.gameplay3d.org" target="_new">http://www.gameplay3d.org</a></p>
<p>If you would like to develop 3D games using C++, gameplay is an excellent open-source framework which is fully supported on BlackBerry 10.</p>
<p>gameplay supports the standards you expect, such as OpenGL shaders, device input and particles, but also provides integrated support for physics, skeletal character animation, 3D audio and support for themeable 2D and 3D UI forms. If you would like to use a scripting language, Lua bindings are support. gameplay is cross-platform, supporting mobile and desktop platforms.</p>
<p>These are just a few of the choices you have on the native platform for BlackBerry 10, so don’t let this limit you. If you have any questions or would like recommendations, please feel free to sound off in the comments!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rimdevblog.wordpress.com/12695/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rimdevblog.wordpress.com/12695/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devblog.blackberry.com&#038;blog=17235680&#038;post=12695&#038;subd=rimdevblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://devblog.blackberry.com/2012/12/blackberry-development-101-native/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cfbe0800e72c5d771f9fef2ea4f941e9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">singmajesty</media:title>
		</media:content>

		<media:content url="http://rimdevblog.files.wordpress.com/2012/12/devblog-native-cake-e1355418336592.png" medium="image">
			<media:title type="html">TITLE_IMAGE</media:title>
		</media:content>
	</item>
		<item>
		<title>The Coming of Age of the BlackBerry 10 Native SDK</title>
		<link>http://devblog.blackberry.com/2012/09/blackberry-10-native-sdk-update/</link>
		<comments>http://devblog.blackberry.com/2012/09/blackberry-10-native-sdk-update/#comments</comments>
		<pubDate>Tue, 25 Sep 2012 17:03:36 +0000</pubDate>
		<dc:creator>russellandrade</dc:creator>
				<category><![CDATA[Native SDK Development]]></category>
		<category><![CDATA[bbm]]></category>
		<category><![CDATA[BlackBerry 10]]></category>
		<category><![CDATA[BlackBerry 10 development]]></category>
		<category><![CDATA[BlackBerry 10 Native SDK]]></category>
		<category><![CDATA[blackberry messenger]]></category>
		<category><![CDATA[Cards]]></category>
		<category><![CDATA[Cascades]]></category>
		<category><![CDATA[Core Native]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[native sdk]]></category>
		<category><![CDATA[native SDK development]]></category>

		<guid isPermaLink="false">http://devblog.blackberry.com/?p=11131</guid>
		<description><![CDATA[The BlackBerry® 10 Native SDK first arrived on the scene for our BlackBerry® PlayBook™ tablet. While it was a powerful tool for game development, it was still infancy in many ways, as it didn’t have many of the strong APIs and functionality for building an integrated native experience with a rich UI. For the BlackBerry [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devblog.blackberry.com&#038;blog=17235680&#038;post=11131&#038;subd=rimdevblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>The BlackBerry® 10 Native SDK first arrived on the scene for our BlackBerry® PlayBook™ tablet. While it was a powerful tool for game development, it was still infancy in many ways, as it didn’t have many of the strong APIs and functionality for building an integrated native experience with a rich UI. For the BlackBerry 10 platform, we evolved the NDK and added in the Cascades™ UI framework along with many new APIs. We have released several beta version of the Native SDK since BlackBerry 10 Jam in May. The infant evolved into early adolescence.</p>
<p>While these earlier betas offered significant improvements over previous editions, they were still a work in progress. We are finally at a stage where we can truly say that with Beta 3 of our Native SDK, our young child has finally come of age. Our APIs have evolved to a point where they are stable and functional enough to advertise backwards compatibility. We also support a full feature set of APIs in the Native SDK – from connectivity APIs such as email and calendar to APIs that support deeper integration such as invocation to social APIs such as BlackBerry® Messenger™ (BBM).</p>
<p>Beta 3 of the Native SDK contains numerous new and important APIs that many of you have been anxiously waiting for. Some of the highlights include:</p>
<p><span id="more-11131"></span></p>
<h3><strong>Cards</strong></h3>
<p>If you attended some of our other conferences, the BlackBerry Jam 10 World Tour or BlackBerry Jam Sessions, you have probably heard us talk about the flow and deep integration that the BlackBerry 10 platform provides. The invocation framework provides a facility via cards through which you can incorporate some of this flow and integration in your app. With cards, you will be able to expose discrete functionality within your app to other apps as well as incorporate functionality provided by your other apps within your own. As an example, if you are developing a picture viewer app, you might expose a simple picture previewer card to the invocation framework. Any app that registers with the invocation framework can invoke your card to preview a picture. Likewise, your app can leverage existing cards on the platform to access various pieces of functionality, whether it is a simple preview of a video or other discrete functions like picking a contact or composing an email.</p>
<p>Visually, a card typically appears as a previewer that takes up most of the screen. However, it appears as part of the application on which it is stacked. Essentially, you can use a gesture to slide the card in, partially or fully into your app as seen in the picture below:</p>
<p><img class="aligncenter size-full wp-image-11185" title="TITLE_IMAGE" src="http://rimdevblog.files.wordpress.com/2012/09/cards.jpg?w=600&#038;h=211" alt="TITLE_IMAGE" width="600" height="211" /></p>
<p>A Card is considered part of the application that invokes it and does not appear as a separate entity in the running applications grid. In addition, when the card&#8217;s function is complete, the user is automatically returned to its parent. In this way, a card &#8220;feels&#8221; like part of the application.</p>
<h3><strong>BBM Social Platform</strong></h3>
<p>BBM has always been core to the Blackberry platform and it still remains a critical piece of our BlackBerry 10 portfolio. The BBM Social Platform APIs allow you to leverage the social features and functionality of BlackBerry Messenger from within your app. For example, you can initiate a BBM chat and share files such as pictures, voice notes, and music between users who are running your app. You can also stream data between users of your app for real-time applications such as communication, gaming and location tracking. As part of the BBM social platform, you will be able to harness BBM features such as BBM user profile, contact list, messaging and application profile box.</p>
<h3><strong>Email, Calendar and Contacts</strong></h3>
<p>There is a significant amount of interest from our third party developers for Calendar, Email and Contact APIs, and we are excited to announce their availability in this beta. The Message Center is a signature feature of the BlackBerry experience, and we are adding support on the API side for it as well. The Message Center APIs provide the ability to launch the unified inbox, send emails and receive task notifications. You can use our calendar functionality to create new calendar events, edit existing events, delete existing events and view existing calendar events. We also have the ability to notify third parties when events are being created, modified and deleted. Finally, our contact API allows you to create, edit, delete and view contacts as well as add additional meta information to a contact.</p>
<h3><strong>Advertising</strong></h3>
<p>In this competitive world of app development, you likely care about creative ways in which you can make money off your apps and we want to help bring you the tools to do just this. After all, the success of our platform depends on your success. To facilitate that, we are adding an Advertising Service along with APIs that allow you to display banner and splash ads in your application or game. You can also create hot links to keyword advertising. Under the scenes, our Advertising service launches a Browser webview to display the advertisements. Along with our Payment and Scoreloop APIs that we introduced in earlier Betas, we believe that we have some powerful tools that can help you monetize your application.</p>
<h3><strong>Push</strong></h3>
<p>At RIM®, we are proud of our Push technology, and we are now making our powerful Push framework available through the NDK. Through the APIs we provide, your app will be able to register with the Push service and receive push data. When the Push service receives incoming Push messages, it will invoke the application registered for the message using the addressing information provided during the registration. Any app that needs to be responsive to incoming data streams should strongly consider taking a look at our Push framework and associated events.</p>
<h3><strong>&#8230;and many others</strong></h3>
<p>On the ‘Core Native’ front, we’ve introduced a Bluetooth® API which supports Bluetooth on/off, power status, and retrieving paired and found devices. It also provides several Bluetooth profiles such as Serial Port Profile (SPP), Bluetooth Low Energy (LE) and Generic Attribute Profile (GATT). Other core native APIs include APIs for Holster detection, retrieving application info and for querying Wi-Fi® and battery status.<br />
Our spell check engine now exposes APIs at both the C and C++ layer to allow apps to perform spell check functionality in their own customized UI.</p>
<p>At the Cascades™ layer, we have introduced a WallPaper API that allows users to set an image as the wallpaper. We have also introduced APIs for sensors, including support for rotation, orientation, magnetometer, gyroscope and accelerometer. The geocoding API allows the user to perform geocoding and reverse geocoding while the radio info API includes the ability to query available radios, their status, ESN/IMSI, Sim card info, Mobile Country Code and Mobile Network code.</p>
<p>We hope you find enough content in this release to satisfy your needs. As we continue to evolve our platform, we intend to be as open and transparent with you about what’s coming down the pipe. I want to point you to our really cool-looking <a href="https://developer.blackberry.com/native/beta/download/roadmap/" target="_new">Native</a> &amp; <a href="https://developer.blackberry.com/cascades/download/roadmap/" target="_new">Cascades</a> flight boards where you can get an up-to-date status on our roadmap items. We have also added a <a href="http://developer.blackberry.com/platforms/ndk" target="_new">section</a> to our site that highlights the key features of our Core Native and Cascades frameworks. It should be useful for those of you who are trying to decide whether Core Native or Cascades is the right framework to use for developing your app.</p>
<p>As always, we want to continue to hear from you about your needs and receive feedback on our Native SDK.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rimdevblog.wordpress.com/11131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rimdevblog.wordpress.com/11131/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devblog.blackberry.com&#038;blog=17235680&#038;post=11131&#038;subd=rimdevblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://devblog.blackberry.com/2012/09/blackberry-10-native-sdk-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/aacfb04e6b02273d991e7bb0c519fdec?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">russellandrade</media:title>
		</media:content>

		<media:content url="http://rimdevblog.files.wordpress.com/2012/09/cards.jpg" medium="image">
			<media:title type="html">TITLE_IMAGE</media:title>
		</media:content>
	</item>
		<item>
		<title>Native or HTML5? Only the developer knows</title>
		<link>http://devblog.blackberry.com/2012/05/blackberry-10-bbui/</link>
		<comments>http://devblog.blackberry.com/2012/05/blackberry-10-bbui/#comments</comments>
		<pubDate>Wed, 02 May 2012 19:01:39 +0000</pubDate>
		<dc:creator>Tim N.</dc:creator>
				<category><![CDATA[Cascades]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[bbUI]]></category>
		<category><![CDATA[BlackBerry 10]]></category>
		<category><![CDATA[blackberry webworks]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[input]]></category>
		<category><![CDATA[native SDK development]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[ui]]></category>

		<guid isPermaLink="false">http://devblog.blackberry.com/?p=9163</guid>
		<description><![CDATA[bbUI now has BlackBerry 10 support!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devblog.blackberry.com&#038;blog=17235680&#038;post=9163&#038;subd=rimdevblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p style="text-align:center;"><img class="aligncenter size-full wp-image-9170" src="http://rimdevblog.files.wordpress.com/2012/05/bbui-1.jpg?w=500&#038;h=124" alt="TITLE_IMAGE" width="500" height="124" /></p>
<p>Back in November of last year, we started up a <a href="https://github.com/blackberry/bbUI.js" target="_new">little open source project</a> which has quickly been gaining steam within our web development community. It was born from humble beginnings as a set of UI examples to show how to style your BlackBerry® WebWorks™ + HTML5 content with CSS to look like a native app, allowing users to have a consistent application feel in a web application. After a lot of hard work, I’m happy to announce that bbUI now has BlackBerry® 10 support&#8230;but more on that later <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h3><strong>A little bit of History and Philosophy</strong></h3>
<p>While there are existing UI frameworks out there such as <a href="http://www.sencha.com/" target="_new">Sencha</a> and <a href="http://jquerymobile.com/" target="_new">jQuery Mobile</a>, there was still a need to create a pixel-perfect application on the BlackBerry platform that also incorporated unique BlackBerry input mechanisms. Features such as the optical track-pad to give end users the experience they expected on a BlackBerry smartphone. Typically these other frameworks are touch only, and the trackpad has been the center of attention on existing BlackBerry smartphones as it requires some special treatment.</p>
<p>We took the opportunity to break out the look and feel provided in those examples, and set out on an adventure to transform them into a JavaScript® UI toolkit that would incorporate concepts of <a href="http://blog.easy-designs.net/archives/2011/11/16/on-adaptive-vs-responsive-web-design/" target="_new">Adaptive Web Design</a> to handle the different devices in the BlackBerry portfolio. This meant handling touch/trackpad inputs, multiple screen resolutions, proper memory management, and an evolution of the BlackBerry UI from BlackBerry® 5.0 to today.</p>
<p><span id="more-9163"></span></p>
<p>The whole philosophy of the toolkit is to provide a responsive native-looking experience for the end user while incorporating best practices in the toolkit to make it as fast as possible on each of the different device versions. This means things like using AJAX and HTML fragments for pushing/popping screens to save precious memory, and only manipulating the styling of the screen when it’s not connected to the DOM to reduce layout computation.</p>
<p>We’ve provided a bunch of samples and documentation on how to use the toolkit, its controls and more information around the philosophy, so please do <a href="https://github.com/blackberry/bbUI.js" target="_new">check it out on github</a>. We’ve also been getting some great community contributions to the toolkit. So a big “thank you” goes out to those who have been helping!</p>
<h3><strong>Now for the cool stuff</strong></h3>
<p>We just posted up the latest version of bbUI that incorporates the BlackBerry 10 look and feel so that your BlackBerry WebWorks + HTML5 applications can look right at home on BlackBerry 10. Oh&#8230;and did I mention that the toolkit also provides this same look and feel on the BlackBerry® PlayBook™ tablet? Giddy-up!</p>
<p>That’s right – this means you have the ability to bring all the BlackBerry 10 core controls and concepts such as action bars, slide in menus, grid lists, context menus, dropdowns, buttons and so on to your BlackBerry WebWorks application on BlackBerry PlayBook tablets, and also on BlackBerry 10.</p>
<p>While there’s already a lot in bbUI to get you started, there’s still more BlackBerry 10 goodies to come:</p>
<ul>
<li>Tab overflow menus</li>
<li>Sliders and progress indicators</li>
<li>Checkboxes and Radio buttons</li>
<li>Top title bars with integrated toolbar buttons</li>
</ul>
<p>We’ve posted the details on how to use all these features <a href="https://github.com/blackberry/bbUI.js" target="_new">right in the root of the github project</a> so that you can get rolling today. I’m always tweeting about #bbUI, so if you want to hear my constant ramblings feel free to follow me <a href="http://twitter.com/brcewane" target="_new">@brcewane</a>&#8230;that’s right, “I’m Batman.”</p>
<p>Now for the eye candy!</p>
<p><strong>Grid Lists and Image Lists:</strong></p>
<p style="text-align:center;"><img title="" src="http://rimdevblog.files.wordpress.com/2012/05/bbui-2.jpg?w=250" alt="" width="250" /> <img title="" src="http://rimdevblog.files.wordpress.com/2012/05/bbui-3.jpg?w=250" alt="" width="250" /></p>
<p><strong>Action Bar Toolbars with Tabs, Buttons and sliding overflow menus:</strong></p>
<p><img class="aligncenter size-full wp-image-9167" title="" src="http://rimdevblog.files.wordpress.com/2012/05/bbui-4.jpg?w=500&#038;h=463" alt="" width="500" height="463" /></p>
<p><strong>Press and hold slide in context menus. “Peek” the menu on press-and-hold to show the icons, and then swipe if you want to bring it into full view:</strong></p>
<p><img class="aligncenter size-full wp-image-9166" title="" src="http://rimdevblog.files.wordpress.com/2012/05/bbui-5.jpg?w=500&#038;h=463" alt="" width="500" height="463" /></p>
<p><strong>Crazy animated Dropdown buttons, Inputs with built in delete buttons and styled buttons and pill-buttons:</strong></p>
<p style="text-align:center;"><img title="" src="http://rimdevblog.files.wordpress.com/2012/05/bbui-6.jpg?w=250" alt="" width="250" /> <img title="" src="http://rimdevblog.files.wordpress.com/2012/05/bbui-7.jpg?w=250" alt="" width="250" /></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rimdevblog.wordpress.com/9163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rimdevblog.wordpress.com/9163/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=devblog.blackberry.com&#038;blog=17235680&#038;post=9163&#038;subd=rimdevblog&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://devblog.blackberry.com/2012/05/blackberry-10-bbui/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/3939390650b170ba28e9bf3c53d397ad?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">timneil1</media:title>
		</media:content>

		<media:content url="http://rimdevblog.files.wordpress.com/2012/05/bbui-1.jpg" medium="image">
			<media:title type="html">TITLE_IMAGE</media:title>
		</media:content>

		<media:content url="http://rimdevblog.files.wordpress.com/2012/05/bbui-2.jpg" medium="image" />

		<media:content url="http://rimdevblog.files.wordpress.com/2012/05/bbui-3.jpg" medium="image" />

		<media:content url="http://rimdevblog.files.wordpress.com/2012/05/bbui-4.jpg" medium="image" />

		<media:content url="http://rimdevblog.files.wordpress.com/2012/05/bbui-5.jpg" medium="image" />

		<media:content url="http://rimdevblog.files.wordpress.com/2012/05/bbui-6.jpg" medium="image" />

		<media:content url="http://rimdevblog.files.wordpress.com/2012/05/bbui-7.jpg" medium="image" />
	</item>
	</channel>
</rss>
