-
-
Save DouglasHennrich/9ae533e90816fb5dc5f5 to your computer and use it in GitHub Desktop.
Icon font MenuItem in ActionBar menu for Titanium SDK
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
".icon-account-plus": { | |
font: { | |
fontFamily: "materialdesignicons-webfont" | |
}, | |
text: "\uf10f" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"#menuItemAccountPlus": { | |
showAsAction: Titanium.Android.SHOW_AS_ACTION_ALWAYS, | |
iconClass: "icon-account-plus" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Alloy> | |
<Window> | |
<Menu id="menu"> | |
<Require src="actionBarMenuItem" id="menuItemAccountPlus" onClick="doSelectContact" /> | |
</Menu> | |
</Window> | |
</Alloy> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment