2017-02-26 78 views
0

當在工具欄android中使用徽標時,我無法顯示標題。徽標未填充時,標題顯示在工具欄中。react-native:使用徽標時,ToolbarAndroid不顯示標題

需要徽標左對齊,然後是標題,然後設置到右邊。可能嗎?

return (
     <View> 
     <ToolbarAndroid style={styles.toolbar} 
     logo={require('../images/P.png')} 
     title="Toolbar" 
     actions={[{title: 'Settings', icon: require('../images/setting.png'),show:'always',showWithText:'true'} ]} 
/> 
     <Image source={require('../images/P.png')} style={{width: 40, height: 40}} /> 

     <Text> This is home page. </Text> 


     </View> 
    ) 

var styles = StyleSheet.create({ 
toolbar: { 
    height: 56, 
    backgroundColor: '#4883da', 
}, 
}); 

這是我的標誌見..

enter image description here

,這裏是沒有標誌的截圖

enter image description here

回答

0

想通了,我用的是原始圖像沒有調整它的應用程序。徽標的圖像大小應該很小(如圖標)。當我將圖像大小調整爲36X36時,它的工作原理是...