This sample demonstrates how to integrate Window Covers into a BlackBerry WebWorks application for BlackBerry 10.
The sample code for this application is Open Source under the Apache 2.0 License.
Applies To
Author(s)
Dependencies
- [bbUI.js] (https://github.com/blackberry/bbUI.js) is [licensed] (https://github.com/blackberry/bbUI.js/blob/master/LICENSE) under the Apache 2.0 license.
Icons
Icons used here are from Liz Myers and are licensed under the CC-BY-3.0 license.
To contribute code to this repository you must be signed up as an official contributor.
The documentation for this API is available at https://developer.blackberry.com/html5/apis/blackberry.ui.cover.html
Config.xml
The following feature must be included in your project's config.xml.
<feature id="blackberry.ui.cover" />
Set the Cover Photo
blackberry.ui.cover.setContent(blackberry.ui.cover.TYPE_IMAGE, {
path: <path to the photo>
});
Set the Cover Label
blackberry.ui.cover.labels = [{
label: "This is my label",
size: 10,
wrap: true
}];
Update the Cover
blackberry.ui.cover.updateCover();
-
Clone this repo to your local machine.
-
Ensure the BlackBerry 10 WebWorks SDK 2.0 is correctly installed.
-
Open a command prompt (windows) or terminal (mac) and run the following command:
webworks create <your source folder>\WindowCovers
-
Replace the default WindowCovers\www folder with the \www folder from this project
-
Replace the default WindowCovers\config.xml with the config.xml from this project
-
From the command prompt (Windows) or terminal (mac), navigate to the WindowCovers folder
cd <your source folder>\WindowCovers
-
Run the following commands to configure plugins used by this app
webworks plugin add com.blackberry.app webworks plugin add com.blackberry.invoke.card webworks plugin add com.blackberry.ui.cover webworks plugin add com.blackberry.ui.toast
-
Run the following command to build and deploy the app to a device connected via USB
webworks run
- BlackBerry HTML5 WebWorks - Downloads, Getting Started guides, samples, code signing keys.
- BlackBerry WebWorks Development Guides
- BlackBerry WebWorks Community Forums
Please see the README of the BB10-WebWorks-Samples repository for instructions on how to add new Samples or make modifications to existing Samples.
If you find a bug in a Sample, or have an enhancement request, simply file an Issue for the Sample.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.