diff --git a/img/modules/action-bar/action-items-android.png b/img/modules/action-bar/action-items-android.png
new file mode 100644
index 000000000..51c1d6879
Binary files /dev/null and b/img/modules/action-bar/action-items-android.png differ
diff --git a/img/modules/action-bar/action-items-ios.png b/img/modules/action-bar/action-items-ios.png
new file mode 100644
index 000000000..f8c7f9815
Binary files /dev/null and b/img/modules/action-bar/action-items-ios.png differ
diff --git a/img/modules/action-bar/action-items-visibility-android.png b/img/modules/action-bar/action-items-visibility-android.png
new file mode 100644
index 000000000..b2aec1968
Binary files /dev/null and b/img/modules/action-bar/action-items-visibility-android.png differ
diff --git a/img/modules/action-bar/action-items-visibility-ios.png b/img/modules/action-bar/action-items-visibility-ios.png
new file mode 100644
index 000000000..d1d5e3ad7
Binary files /dev/null and b/img/modules/action-bar/action-items-visibility-ios.png differ
diff --git a/img/modules/action-bar/home-icon-android.png b/img/modules/action-bar/home-icon-android.png
new file mode 100644
index 000000000..4d6b4d312
Binary files /dev/null and b/img/modules/action-bar/home-icon-android.png differ
diff --git a/img/modules/action-bar/nav-btn-android.png b/img/modules/action-bar/nav-btn-android.png
new file mode 100644
index 000000000..0cd45d7db
Binary files /dev/null and b/img/modules/action-bar/nav-btn-android.png differ
diff --git a/img/modules/action-bar/nav-btn-ios.png b/img/modules/action-bar/nav-btn-ios.png
new file mode 100644
index 000000000..e7de29d91
Binary files /dev/null and b/img/modules/action-bar/nav-btn-ios.png differ
diff --git a/img/modules/action-bar/side-drawer-android.png b/img/modules/action-bar/side-drawer-android.png
new file mode 100644
index 000000000..ef1d93415
Binary files /dev/null and b/img/modules/action-bar/side-drawer-android.png differ
diff --git a/img/modules/action-bar/side-drawer-ios.png b/img/modules/action-bar/side-drawer-ios.png
new file mode 100644
index 000000000..2644340b4
Binary files /dev/null and b/img/modules/action-bar/side-drawer-ios.png differ
diff --git a/img/modules/action-bar/style-android.png b/img/modules/action-bar/style-android.png
new file mode 100644
index 000000000..6fff33315
Binary files /dev/null and b/img/modules/action-bar/style-android.png differ
diff --git a/img/modules/action-bar/style-ios.png b/img/modules/action-bar/style-ios.png
new file mode 100644
index 000000000..709a0143c
Binary files /dev/null and b/img/modules/action-bar/style-ios.png differ
diff --git a/img/modules/action-bar/title-android.png b/img/modules/action-bar/title-android.png
new file mode 100644
index 000000000..16750de83
Binary files /dev/null and b/img/modules/action-bar/title-android.png differ
diff --git a/img/modules/action-bar/title-ios.png b/img/modules/action-bar/title-ios.png
new file mode 100644
index 000000000..926a94a23
Binary files /dev/null and b/img/modules/action-bar/title-ios.png differ
diff --git a/img/modules/action-bar/title-view-android.png b/img/modules/action-bar/title-view-android.png
new file mode 100644
index 000000000..88daa8631
Binary files /dev/null and b/img/modules/action-bar/title-view-android.png differ
diff --git a/img/modules/action-bar/title-view-ios.png b/img/modules/action-bar/title-view-ios.png
new file mode 100644
index 000000000..243570e4f
Binary files /dev/null and b/img/modules/action-bar/title-view-ios.png differ
diff --git a/ui/action-bar.md b/ui/action-bar.md
new file mode 100644
index 000000000..a96c2d484
--- /dev/null
+++ b/ui/action-bar.md
@@ -0,0 +1,379 @@
+---
+title: Action Bar
+description: Learn how to use and customize the Action Bar.
+position: 11
+slug: action-bar
+---
+
+# Overview
+
+The `ActionBar` is the NativeScript common abstraction over the Android ActionBar and iOS NavigationBar.
+
+* [Title](#title)
+ * [Setting The Title Text](#setting-the-title-text)
+ * [Using Custom Title View](#using-custom-title-view)
+ * [Setting App Icon](#setting-app-icon)
+* [Navigation Button](#navigation-button)
+ * [iOS Specifics](#ios-specifics)
+ * [Android Specifics](#android-specifics)
+* [Action Items](#action-items)
+ * [Positioning](#positioning)
+ * [Setting Icons](#setting-icons)
+* [How To](#how-to)
+ * [Showing/Hiding The Action Bar](#showing-hiding-the-action-bar)
+ * [Hiding Action Items](#hiding-action-items)
+ * [Styling](#styling)
+ * [Creating SlideDrawer Button](#creating-slidedrawer-button)
+
+# Title
+
+## Setting The Title Text
+
+```XML
+
+
+
+
+
+
+
+```
+
+
+
+
+## Using Custom Title View
+
+You can set a custom title view, which will render instead of the title.
+Here is how to combine image and label for a `titleView` (the example contains only the `ActionBar` definition):
+
+```XML
+
+
+
+
+
+
+
+
+```
+```CSS
+.action-image {
+ width: 40;
+ height: 40;
+ vertical-align: center;
+}
+
+.action-label {
+ color: #3C5AFD;
+ font-size: 24;
+ font-weight: bold;
+ vertical-align: center;
+}
+```
+
+The result is:
+
+
+
+
+Note, that you can use CSS to style the elements inside the `titleView`.
+
+## Setting App Icon
+
+You can set the application icon only for Android. By default, the application icon is hidden. You can show it by setting the `android.iconVisibility` property to `always`.
+
+```XML
+
+```
+
+The result is:
+
+
+
+# Navigation Button
+
+The `NavigationButton` component is a common abstraction over the iOS back button and the Android navigation button.
+
+```XML
+
+
+
+```
+```JavaScript
+function onNavBtnTap() {
+ // This code will be called only in Android.
+ console.log("Navigation button tapped!");
+}
+exports.onNavBtnTap = onNavBtnTap;
+```
+```TypeScript
+export function onNavBtnTap(){
+ // This code will be called only in Android.
+ console.log("Navigation button tapped!");
+}
+```
+
+The result is:
+
+
+
+
+## iOS Specifics
+
+The default text of the button is the title of the previous page, you can change it by setting the `text` property as shown in the example above.
+
+In iOS, the back button is used explicitly for navigation. It navigates to the previous page and you cannot handle the `tap` event to override this behavior.
+
+If you want to place a button on the left side of the `ActionBar` and handle the tap event (e.g. show slide-out), you can use `ActionItem` with `ios.position="left"`.
+
+## Android Specifics
+
+In Android, you cannot set text inside the navigation button. You can use the `icon` property to set an image (e.g. `~\images\nav-image.png` or `res:\\ic_nav`). You can use `android.systemIcon` to set one of the system icons available in Android.
+
+# Action Items
+
+You can define additional action buttons using the `actionItems` collection:
+
+```XML
+
+
+
+
+
+
+```
+```JavaScript
+function onShare(args) {
+ console.log("Share action item tapped.");
+}
+exports.onShare = onShare;
+function onDelete(args) {
+ console.log("Delete action item tapped.");
+}
+exports.onDelete = onDelete;
+```
+```TypeScript
+export function onShare(args: observable.EventData) {
+ console.log("Share action item tapped.");
+}
+
+export function onDelete(args: observable.EventData) {
+ console.log("Delete action item tapped.");
+}
+```
+The result is:
+
+
+
+
+## Positioning
+
+The following positioning options are available for iOS and Android.
+
+Android (set with `android.position`):
+
+* `actionBar`\[default\] - Puts the item in the action bar. Action item can be rendered both as text or icon.
+* `popup` - Puts the item in the options menu. Items will be rendered as text.
+* `actionBarIfRoom` - Puts the item in the action bar if there is room for it. Otherwise, puts it in the options menu.
+
+iOS (set with `ios.position`):
+
+* `left`\[default\] - Puts the item on the left side of the action bar.
+* `right` - Puts the item on the left side of the action bar.
+
+## Setting Icons
+
+You can use the `icon` property to set an image instead of text for the action item. You can use local image (e.g. `~/images/add.png`) or resource (e.g. `res://ic_add`). Because there is no way to set explicitly `width` and `height` for icons, the recommended approach is using resources.
+
+You can use the `ios.systemIcon` and `android.systemIcon` properties to show system icons. If you define a system icon - it will be used instead of `icon` and `text` properties.
+
+Values for `android.systemIcon` correspond to the resources names of the built-in Android system icons. For a full list of Android drawable names, see [http://androiddrawables.com](http://androiddrawables.com).
+
+Values for `ios.systemIcon` are numbers from the [`UIBarButtonSystemItem`](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIBarButtonItem_Class/index.html#//apple_ref/doc/uid/TP40007519-CH3-SW2) enumeration:
+
+| Value | Icon | | Value | Icon |
+| ----- | -------------- |--| ----- | -------------- |
+|0 | Done | |12 | Search |
+|1 | Cancel | |13 | Refresh |
+|2 | Edit | |14 | Stop |
+|3 | Save | |15 | Camera |
+|4 | Add | |16 | Trash |
+|5 | FlexibleSpace | |17 | Play |
+|6 | FixedSpace | |18 | Pause |
+|7 | Compose | |19 | Rewind |
+|8 | Reply | |20 | FastForward |
+|9 | Action | |21 | Undo |
+|10 | Organize | |22 | Redo |
+|11 | Bookmarks | |23 | PageCurl |
+
+# How To
+
+## Showing/Hiding The Action Bar
+
+You can explicitly control the visibility of the `ActionBar` by setting the `actionBarHidden` property of the `Page`.
+
+In **Android**, the application bar is visible by default and shows the name of the application as title. The navigation button is visible only when it is explicitly defined in the application.
+
+In **iOS**, if the application bar is empty (E.g. no title or action items are defined), it is hidden on the fist page and automatically shown after navigation to host the navigation button. If the action bar is not empty (e.g. there is title or action items defined) it will be shown on first page too.
+
+## Hiding Action Items
+
+You can use the `visibility` property of the `ActionItem` to dynamically hide and show items. You can also use binding for the visibility.
+
+Here is an example of showing different action items when the app is in "editing" mode:
+
+```XML
+
+
+
+
+
+
+
+```
+```JavaScript
+var observable = require("data/observable");
+function onLoaded(args) {
+ var page = args.object;
+ page.bindingContext = new observable.Observable();
+ page.bindingContext.set("isEditing", false);
+}
+exports.onLoaded = onLoaded;
+function onEdit(args) {
+ console.log("Edit item tapped.");
+ var btn = args.object;
+ btn.bindingContext.set("isEditing", true);
+}
+exports.onEdit = onEdit;
+function onSave(args) {
+ console.log("Save item tapped.");
+ var btn = args.object;
+ btn.bindingContext.set("isEditing", false);
+}
+exports.onSave = onSave;
+function onCancel(args) {
+ console.log("Cancel item tapped.");
+ var btn = args.object;
+ btn.bindingContext.set("isEditing", false);
+}
+exports.onCancel = onCancel;
+```
+```TypeScript
+import observable = require("data/observable");
+import view = require("ui/core/view");
+
+export function onLoaded(args: observable.EventData) {
+ var page = args.object;
+ page.bindingContext = new observable.Observable();
+ page.bindingContext.set("isEditing", false);
+}
+
+export function onEdit(args: observable.EventData) {
+ console.log("Edit item tapped.");
+ var btn = args.object;
+ btn.bindingContext.set("isEditing", true);
+}
+
+export function onSave(args: observable.EventData) {
+ console.log("Save item tapped.");
+ var btn = args.object;
+ btn.bindingContext.set("isEditing", false);
+}
+
+export function onCancel(args: observable.EventData) {
+ console.log("Cancel item tapped.");
+ var btn = args.object;
+ btn.bindingContext.set("isEditing", false);
+}
+```
+
+The result is:
+
+
+
+
+## Styling
+
+The action bar has some CSS styling limitations. You can use only `background-color` and `color` properties. Here is an example:
+
+```XML
+
+
+
+
+
+
+```
+```CSS
+ActionBar {
+ background-color: #3C5AFD;
+ color: white;
+}
+```
+
+The result is:
+
+
+
+
+In iOS, the `color` property affects the color of the title and the action items.
+In Android, the `color` property affects only the title text. However, you can set the default color of the text in the action items by adding an `actionMenuTextColor` item in the Android theme (inside `App_Resources\Android\values\styles.xml`).
+
+>Note: Setting other CSS properties (e.g. `font-family`) will only affect the views defined inside `titleView`.
+
+## Creating SlideDrawer Button
+
+This example shows how to implement a "show side-drawer button" functionality.
+
+For Android, this sample uses the `NavigationButton`, because `ActionItems` are shown on the right side of the `ActionBar`.
+
+For iOS, this code adds a regular `ActionItem` with `position` set to `left`. Using the `NavigationButton` as a side-drawer button in iOS is not possible, because its function is to always navigate back in the application.
+
+>Note: The `` and `` tags are used inside the XML to define platform-specific elements.
+
+```XML
+
+
+
+
+
+
+
+
+
+
+```
+```JavaScript
+function showSideDrawer(args) {
+ console.log("Show SideDrawer tapped.");
+ // Show sidedrawer ...
+}
+exports.showSideDrawer = showSideDrawer;
+```
+```TypeScript
+export function showSideDrawer(args: observable.EventData) {
+ console.log("Show SideDrawer tapped.");
+ // Show sidedrawer ...
+}
+```
+```CSS
+ActionBar {
+ background-color: #3C5AFD;
+ color: white;
+}
+```
+
+The result is:
+
+
+