反应本机工具栏 android 与下拉菜单,例如 whatsapp
react native toolbar android with dropdown like, for example, whatsapp
我需要开发一个下拉菜单,例如 whatsapp。
这是我尝试使用 ToolbarAndroid 实现的代码
<Icon.ToolbarAndroid
titleColor={'#000000'}
style={{
height: 56,
alignSelf: 'stretch',
width: 20
}}
iconColor={"#fff"}
iconSize={26}
rtl={true}
navIconName={"more-vert"}
contentInsetStart={50}
actions={[{title: 'Settings', show: 'always'}, {title: 'Settings 2', show: 'always'}]} />
我不知道 ToolbarAndroid 是否是我需要的组件,也许如果我知道这种菜单样式的真实名称,我可以在 google 搜索中更准确。
这是菜单图片:
I need do a menu like this (whatsapp)
只需在此处更改:
actions={[{title: 'Settings', show: 'never'}, {title: 'Settings 2', show: 'never'}]} />
这在android中称为溢出菜单:
操作"Show:"
when to show this action as an icon or hide it in the overflow menu:
always, ifRoom or never
如果你设置永不,它会隐藏在工具栏右侧的溢出菜单图标中。
有关详细信息,请参阅此 ToolbarAndroid
我需要开发一个下拉菜单,例如 whatsapp。
这是我尝试使用 ToolbarAndroid 实现的代码
<Icon.ToolbarAndroid
titleColor={'#000000'}
style={{
height: 56,
alignSelf: 'stretch',
width: 20
}}
iconColor={"#fff"}
iconSize={26}
rtl={true}
navIconName={"more-vert"}
contentInsetStart={50}
actions={[{title: 'Settings', show: 'always'}, {title: 'Settings 2', show: 'always'}]} />
我不知道 ToolbarAndroid 是否是我需要的组件,也许如果我知道这种菜单样式的真实名称,我可以在 google 搜索中更准确。
这是菜单图片:
I need do a menu like this (whatsapp)
只需在此处更改:
actions={[{title: 'Settings', show: 'never'}, {title: 'Settings 2', show: 'never'}]} />
这在android中称为溢出菜单:
操作"Show:"
when to show this action as an icon or hide it in the overflow menu: always, ifRoom or never
如果你设置永不,它会隐藏在工具栏右侧的溢出菜单图标中。
有关详细信息,请参阅此 ToolbarAndroid