The silly me put this on a page:
<Page.actionBar>
<ActionBar>
<ActionItem text="{{ resources.signUp }}" tap="signUpMenuItemTap" android.position="actionBar" />
</ActionBar>
</Page.actionBar>
At runtime it works like a charm. The only problem is the action item does not appear.
Obviously the correct usage is:
<Page.actionBar>
<ActionBar>
<ActionBar.actionItems>
<ActionItem text="{{ resources.signUp }}" tap="signUpMenuItemTap" android.position="actionBar" />
</ActionBar.actionItems>
</ActionBar>
</Page.actionBar>
The problem is the first case does not generate neither compile-time nor run-time error.
The silly me put this on a page:
At runtime it works like a charm. The only problem is the action item does not appear.
Obviously the correct usage is:
The problem is the first case does not generate neither compile-time nor run-time error.