
The Toolbar is the new thing from Google which acts as an ActionBar. It is not a special view like the action bar is, it is implemented and added to your layout the same as any view. The InnerView classes of the swap workflow have the choice of what colour to make the toolbar, so that they can distinguish themselves as per the mockups (some deep blue, others bright blue). Added icons for close, but they don't do anything yet. Minor tweaks to layout so that it looks more like the latest mockups.
12 lines
418 B
XML
12 lines
418 B
XML
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
|
|
|
|
<item
|
|
android:id="@+id/action_next"
|
|
android:icon="@drawable/ic_arrow_forward_white"
|
|
android:title="@string/skip"
|
|
android:titleCondensed="@string/skip"/>
|
|
|
|
<!-- Currently in a style, but that style probably wont work on 8 -> 11 devices -->
|
|
<!--android:drawable="@drawable/swap_action_button_skin"-->
|
|
|
|
</menu> |