mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
Merge pull request #3522 from NativeScript/status-bar-pick
Status bar pick
This commit is contained in:
19
.travis.yml
19
.travis.yml
@@ -37,16 +37,17 @@ before_script:
|
||||
- adb shell input keyevent 82 &
|
||||
script:
|
||||
- jdk_switcher use oraclejdk8
|
||||
- grunt default --verbose &&
|
||||
FULL_PACKAGE_VERSION=`node -e 'console.log(require("./bin/dist/tns-core-modules/package.json").version);'` &&
|
||||
(cd tns-platform-declarations && npm pack) &&
|
||||
wget -O ./nativescript.tgz "https://s3.amazonaws.com/nativescript-ci/build_result/nativescript.tgz" &&
|
||||
echo no | npm install -g nativescript.tgz --ignore-scripts > /dev/null && tns usage-reporting disable && tns error-reporting disable &&
|
||||
grunt buildOnlyTestsApp --verbose --platform=Android --modulesPath=./bin/dist/$PACKAGE_NAME-$FULL_PACKAGE_VERSION.tgz --runtimeVersion=$RUNTIMEVERSION --emuPId=.*emulator.* --avd=$AVD_NAME --showEmu=false > /dev/null &&
|
||||
grunt runOnlyTestsApp --verbose --platform=Android --modulesPath=./bin/dist/$PACKAGE_NAME-$FULL_PACKAGE_VERSION.tgz --emuPId=.*emulator.* --avd=$AVD_NAME --showEmu=false
|
||||
- grunt default --verbose
|
||||
- FULL_PACKAGE_VERSION=$(node build/version.js)
|
||||
- (cd tns-platform-declarations && npm pack)
|
||||
- wget -O ./nativescript.tgz "https://s3.amazonaws.com/nativescript-ci/build_result/nativescript.tgz"
|
||||
- echo no | npm install -g nativescript.tgz --ignore-scripts
|
||||
- tns usage-reporting disable && tns error-reporting disable
|
||||
- grunt buildOnlyTestsApp --platform=Android --modulesPath=./bin/dist/$PACKAGE_NAME-$FULL_PACKAGE_VERSION.tgz --runtimeVersion=$RUNTIMEVERSION --emuPId=.*emulator.* --avd=$AVD_NAME --showEmu=false
|
||||
- grunt runOnlyTestsApp --verbose --platform=Android --modulesPath=./bin/dist/$PACKAGE_NAME-$FULL_PACKAGE_VERSION.tgz --emuPId=.*emulator.* --avd=$AVD_NAME --showEmu=false
|
||||
- node ./build/travis-scripts/check-testrun-broken.js
|
||||
- adb pull /storage/sdcard/Documents/test-results.xml &&
|
||||
mv test-results.xml ~/test-run-results$PACKAGE_VERSION.xml
|
||||
- adb pull /storage/sdcard/Documents/test-results.xml
|
||||
- mv test-results.xml ~/test-run-results$PACKAGE_VERSION.xml
|
||||
before_deploy:
|
||||
- mv bin/dist/$PACKAGE_NAME-$FULL_PACKAGE_VERSION.tgz ../.deploymentpackage
|
||||
- mv build ../
|
||||
|
||||
@@ -4,35 +4,42 @@
|
||||
<ActionBar title="Sample title" />
|
||||
</Page.actionBar>
|
||||
|
||||
<WrapLayout>
|
||||
<!-- status-bar-style -->
|
||||
<Button text="11" tap="applyTap" tag="status-bar-style: light;" style.fontSize="8" width="40" height="40" automationText="light;" />
|
||||
<Button text="12" tap="applyTap" tag="status-bar-style: dark;" style.fontSize="8" width="40" height="40" automationText="dark;" />
|
||||
<StackLayout padding="10">
|
||||
<Label text="IOS and Android" fontSize="14"/>
|
||||
<WrapLayout>
|
||||
<!-- status-bar-style -->
|
||||
<Button text="11" tap="applyTap" tag="status-bar-style: light;" style.fontSize="8" width="40" height="40" automationText="light;" />
|
||||
<Button text="12" tap="applyTap" tag="status-bar-style: dark;" style.fontSize="8" width="40" height="40" automationText="dark;" />
|
||||
|
||||
<!-- status-bar-style - action-bar - background -->
|
||||
<Button text="21" tap="applyTapOnStyledActionBar" tag="status-bar-style: light;" style.fontSize="8" width="40" height="40" automationText="light-abb-ruby" />
|
||||
<Button text="22" tap="applyTapOnStyledActionBar" tag="status-bar-style: dark;" style.fontSize="8" width="40" height="40" automationText="dark-abb-ruby" />
|
||||
<!-- status-bar-style - action-bar - background -->
|
||||
<Button text="21" tap="applyTapOnStyledActionBar" tag="status-bar-style: light;" style.fontSize="8" width="40" height="40" automationText="light-abb-ruby" />
|
||||
<Button text="22" tap="applyTapOnStyledActionBar" tag="status-bar-style: dark;" style.fontSize="8" width="40" height="40" automationText="dark-abb-ruby" />
|
||||
|
||||
<!-- status-bar-style - action-bar - hidden -->
|
||||
<Button text="31" tap="applyTapWithHiddenActionBar" tag="status-bar-style: light;" style.fontSize="8" width="40" height="40" automationText="light-ab-hidden" />
|
||||
<Button text="32" tap="applyTapWithHiddenActionBar" tag="status-bar-style: dark;" style.fontSize="8" width="40" height="40" automationText="ark-ab-hidden" />
|
||||
<!-- status-bar-style - page - background -->
|
||||
<Button text="51" tap="applyTap" tag="status-bar-style: light;background-color: #E0115F;" style.fontSize="8" width="40" height="40" automationText="light-bckg-ruby" />
|
||||
<Button text="52" tap="applyTap" tag="status-bar-style: dark; background-color: #E0115F;" style.fontSize="8" width="40" height="40" automationText="dark-bckg-ruby" />
|
||||
|
||||
<!-- android-status-bar-background -->
|
||||
<Button text="41" tap="applyTap" tag="android-status-bar-background: #E0115F;" style.fontSize="8" width="40" height="40" automationText="asbb-blue" />
|
||||
<!-- status-bar-style - page - and - action-bar - background -->
|
||||
<Button text="61" tap="applyTapOnStyledActionBar" tag="status-bar-style: light;background-color: #E0115F;" style.fontSize="8" width="40" height="40" automationText="light-bckg-yellow-abbckg-ruby" />
|
||||
<Button text="62" tap="applyTapOnStyledActionBar" tag="status-bar-style: dark; ;background-color: #E0115F;" style.fontSize="8" width="40" height="40" automationText="dark-bckg-yellow-abbckg-ruby" />
|
||||
|
||||
<!-- status-bar-style - page - background -->
|
||||
<Button text="51" tap="applyTap" tag="status-bar-style: light;background-color: #E0115F;" style.fontSize="8" width="40" height="40" automationText="light-bckg-ruby" />
|
||||
<Button text="52" tap="applyTap" tag="status-bar-style: dark; background-color: #E0115F;" style.fontSize="8" width="40" height="40" automationText="dark-bckg-ruby" />
|
||||
<!-- status-bar-style - action-bar - hidden - and - backgroundSpanUnderStatusBar -->
|
||||
<Button text="71" tap="applyTapWithSpan" tag="status-bar-style: light;background-color: yellow" style.fontSize="8" width="40" height="40" automationText="dark-bckg-yellow-bckgsusb-true" />
|
||||
<Button text="72" tap="applyTapOnStyledActionBarAndSpan" tag="status-bar-style: light;background-color: yellow;" style.fontSize="8" width="40" height="40" automationText="light-bckg-yellow-abbck-ruby-bckgsusb-true" />
|
||||
|
||||
<!-- status-bar-style - page - and - action-bar - background -->
|
||||
<Button text="61" tap="applyTapOnStyledActionBar" tag="status-bar-style: light;background-color: #E0115F;" style.fontSize="8" width="40" height="40" automationText="light-bckg-yellow-abbckg-ruby" />
|
||||
<Button text="62" tap="applyTapOnStyledActionBar" tag="status-bar-style: dark; ;background-color: #E0115F;" style.fontSize="8" width="40" height="40" automationText="dark-bckg-yellow-abbckg-ruby" />
|
||||
<Button text="73" tap="applyTapWithSpan" tag="status-bar-style: dark;background-color: yellow;" style.fontSize="8" width="40" height="40" automationText="light-ab-hidden-bckgsusb-true" />
|
||||
<Button text="74" tap="applyTapWithActionBarHiddenAndSpan" tag="status-bar-style: dark;background-color: yellow;" style.fontSize="8" width="40" height="40" automationText="dark-ab-hidden-bckgsusb-true" />
|
||||
|
||||
<!-- status-bar-style - action-bar - hidden - and - backgroundSpanUnderStatusBar -->
|
||||
<Button text="71" tap="applyTapWithSpan" tag="status-bar-style: light;background-color: yellow" style.fontSize="8" width="40" height="40" automationText="dark-bckg-yellow-bckgsusb-true" />
|
||||
<Button text="72" tap="applyTapOnStyledActionBarAndSpan" tag="status-bar-style: light;background-color: yellow;" style.fontSize="8" width="40" height="40" automationText="light-bckg-yellow-abbck-ruby-bckgsusb-true" />
|
||||
</WrapLayout>
|
||||
|
||||
<Button text="73" tap="applyTapWithSpan" tag="status-bar-style: dark;background-color: yellow;" style.fontSize="8" width="40" height="40" automationText="light-ab-hidden-bckgsusb-true" />
|
||||
<Button text="74" tap="applyTapWithActionBarHiddenAndSpan" tag="status-bar-style: dark;background-color: yellow;" style.fontSize="8" width="40" height="40" automationText="dark-ab-hidden-bckgsusb-true" />
|
||||
</WrapLayout>
|
||||
<Label text="Android" fontSize="14" marginTop="10"/>
|
||||
<WrapLayout>
|
||||
<!-- status-bar-style - action-bar - hidden -->
|
||||
<Button text="31" tap="applyTapWithHiddenActionBar" tag="status-bar-style: light;" style.fontSize="8" width="40" height="40" automationText="light-ab-hidden" />
|
||||
<Button text="32" tap="applyTapWithHiddenActionBar" tag="status-bar-style: dark;" style.fontSize="8" width="40" height="40" automationText="ark-ab-hidden" />
|
||||
|
||||
<!-- android-status-bar-background -->
|
||||
<Button text="41" tap="applyTap" tag="android-status-bar-background: #E0115F;" style.fontSize="8" width="40" height="40" automationText="asbb-ruby" />
|
||||
</WrapLayout>
|
||||
</StackLayout>
|
||||
</Page>
|
||||
2
build/version.js
Normal file
2
build/version.js
Normal file
@@ -0,0 +1,2 @@
|
||||
var fs = require("fs");
|
||||
console.log(JSON.parse(fs.readFileSync("./bin/dist/tns-core-modules/package.json")).version);
|
||||
@@ -427,10 +427,34 @@ export class ActionBarStyler implements style.Styler {
|
||||
(<android.support.v7.widget.Toolbar>v._nativeView).setTitleTextColor(nativeValue);
|
||||
}
|
||||
|
||||
// background-color
|
||||
private static getBackgroundColorProperty(view: view.View): any {
|
||||
let toolbar = <android.support.v7.widget.Toolbar>view._nativeView;
|
||||
return toolbar.getBackground();
|
||||
}
|
||||
|
||||
private static setBackgroundColorProperty(v: view.View, newValue: any) {
|
||||
var toolbar = (<android.support.v7.widget.Toolbar>v._nativeView);
|
||||
if (toolbar) {
|
||||
toolbar.setBackgroundColor(newValue);
|
||||
}
|
||||
}
|
||||
|
||||
private static resetBackgroundColorProperty(v: view.View, nativeValue: any) {
|
||||
var toolbar = (<android.support.v7.widget.Toolbar>v._nativeView);
|
||||
if (toolbar) {
|
||||
toolbar.setBackgroundColor(nativeValue);
|
||||
}
|
||||
}
|
||||
|
||||
public static registerHandlers() {
|
||||
style.registerHandler(style.colorProperty, new style.StylePropertyChangedHandler(
|
||||
ActionBarStyler.setColorProperty,
|
||||
ActionBarStyler.resetColorProperty), "ActionBar");
|
||||
style.registerHandler(style.backgroundColorProperty, new style.StylePropertyChangedHandler(
|
||||
ActionBarStyler.setBackgroundColorProperty,
|
||||
ActionBarStyler.resetBackgroundColorProperty,
|
||||
ActionBarStyler.getBackgroundColorProperty), "ActionBar");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -243,15 +243,19 @@ export class PageStyler implements style.Styler {
|
||||
|
||||
// android-status-bar-background-property
|
||||
private static setAndroidStatusBarBackgroundProperty(v: view.View, newValue: any) {
|
||||
let window = app.android.startActivity.getWindow();
|
||||
let nativeColor = new colorModule.Color(newValue).android;
|
||||
window.setStatusBarColor(nativeColor);
|
||||
if (platform.device.sdkVersion >= "21") {
|
||||
let window = app.android.startActivity.getWindow();
|
||||
let nativeColor = new colorModule.Color(newValue).android;
|
||||
window.setStatusBarColor(nativeColor);
|
||||
}
|
||||
}
|
||||
|
||||
private static resetAndroidStatusBarBackgroundProperty(v: view.View, nativeValue: any) {
|
||||
let window = app.android.startActivity.getWindow();
|
||||
let nativeColor = (nativeValue instanceof colorModule.Color) ? (<colorModule.Color>nativeValue).android : new colorModule.Color(nativeValue).android;
|
||||
window.setStatusBarColor(nativeColor);
|
||||
if (platform.device.sdkVersion >= "21") {
|
||||
let window = app.android.startActivity.getWindow();
|
||||
let nativeColor = (nativeValue instanceof colorModule.Color) ? (<colorModule.Color>nativeValue).android : new colorModule.Color(nativeValue).android;
|
||||
window.setStatusBarColor(nativeColor);
|
||||
}
|
||||
}
|
||||
|
||||
private static getAndroidStatusBarBackgroundProperty(v: view.View): any {
|
||||
|
||||
Reference in New Issue
Block a user