2016-08-04 4 views
0

앱 브라우저에서 cordova의 풍부한 버전 인 cordova themeablebrowser을 사용하여 코드도 및 각도 소재 디자인으로 하이브리드 앱을 개발했습니다. 예상대로 안드로이드에서코드 바 테마 브라우저가 iOS에 툴바를 표시하지 않습니다.

cordova.ThemeableBrowser.open('https://bookmebus.com/faq','_self', { 
 
    statusbar: { 
 
     color: '#ffffffff' 
 
    }, 
 
    toolbar: { 
 
     height: 44, 
 
     color: '#f0f0f0ff' 
 
    }, 
 
    title: { 
 
     color: '#003264ff', 
 
     showPageTitle: true 
 
    }, 
 
    backButton: { 
 
     image: 'back', 
 
     imagePressed: 'back_pressed', 
 
     align: 'left', 
 
     event: 'backPressed' 
 
    }, 
 
    forwardButton: { 
 
     image: 'forward', 
 
     imagePressed: 'forward_pressed', 
 
     align: 'left', 
 
     event: 'forwardPressed' 
 
    }, 
 
    closeButton: { 
 
     image: 'close', 
 
     imagePressed: 'close_pressed', 
 
     align: 'left', 
 
     event: 'closePressed' 
 
    }, 
 
    customButtons: [ 
 
     { 
 
      image: 'share', 
 
      imagePressed: 'share_pressed', 
 
      align: 'right', 
 
      event: 'sharePressed' 
 
     } 
 
    ], 
 
    menu: { 
 
     image: 'menu', 
 
     imagePressed: 'menu_pressed', 
 
     title: 'Test', 
 
     cancel: 'Cancel', 
 
     align: 'right', 
 
     items: [ 
 
      { 
 
       event: 'helloPressed', 
 
       label: 'Hello World!' 
 
      }, 
 
      { 
 
       event: 'testPressed', 
 
       label: 'Test!' 
 
      } 
 
     ] 
 
    }, 
 
    backButtonCanClose: true 
 
})

은 페이지 제목과 도구 모음을 보여줍니다

코드

이 같은 페이지보기를 호출합니다. 아래 그림과 같이 iOS에서이 도구 모음이 누락 된 이유는 알 수 없습니다.

enter image description here

답변

0

나는 플러그인을 제거하고 작동 후 r0.2.15로 설치합니다.

cordova plugin add https://github.com/initialxy/cordova-plugin-themeablebrowser.git#r0.2.15