<ToolbarAndroid logo={require('./img/ic_tjke_lxr.png')}
title='ToolbarDemo'
subtitle='这是副标题'
actions={toolbarAction}
style={styles.toolbarStyle}
navIcon={require('./img/ic_tjke_arrow_wx.png')}
>
</ToolbarAndroid>
就是这样的:
toolbar其中actions
中的内容可以是:
var toolbarAction = [
{
title: '菜单1',
icon: require('./img/hehe.png'),
},
{
title: '菜单2',
// show字段用于表明是否隐藏在右边的菜单中还是在显示在toolbar中
show:'always'
}
]
网友评论