Image in nav header bar of ion-tabs?

Using ion-tabs, each tab-template shows the app name and current tab at the very top of the page to the left.

<ion-view view-title="AppName - Menu">

How can I add app icon that appears the far right of that same header location?

I added:

<ion-view view-title="AppName - Menu">
<ion-nav-title><img style="float:right;" ng-src="img/appIcon.png"></ion-nav-title>

But all that seemed to do was place an NEW header row with the icon showing at the top, but now the “AppName -Menu” has been pushed down behind the actual tabs icons. I need to get that icon inline.

I figured it out:

<ion-view>
  <ion-nav-title>
    APP - MENU
    <img style="float:right;width:8%;padding-top:7px;" ng-src="img/APPIcon.png"></ion-nav-title>
  </ion-nav-title>
 ...
 ...
 </ion-view>