From c8eac158f845a937e0aab2c72f74630dfb99796f Mon Sep 17 00:00:00 2001
From: wxr <464027401@qq.com>
Date: 星期五, 14 七月 2023 16:52:55 +0800
Subject: [PATCH] Update AndroidManifest.xml
---
HDL_ON/UI/UI2/FuntionControlView/Light/RGBPage.cs | 108 ++++++++++++++++++++++++++++++++++++++++++++----------
1 files changed, 88 insertions(+), 20 deletions(-)
diff --git a/HDL_ON/UI/UI2/FuntionControlView/Light/RGBPage.cs b/HDL_ON/UI/UI2/FuntionControlView/Light/RGBPage.cs
index 8c6bab8..b6d04cf 100644
--- a/HDL_ON/UI/UI2/FuntionControlView/Light/RGBPage.cs
+++ b/HDL_ON/UI/UI2/FuntionControlView/Light/RGBPage.cs
@@ -53,11 +53,11 @@
#region 鍖哄煙鍙橀噺
Light lightTemp;
+ Function function;
Button btnCollection_Out;
Button btnFunctionName_Out;
Button btnFromFloor_Out;
bool onDimmerBar = false;
- Function function;
/// <summary>
/// 鏈�鍚庢墦寮�鐨勯鑹�
@@ -84,6 +84,12 @@
bodyView.BackgroundColor = CSS_Color.BackgroundColor;
//new TopViewDiv(bodyView, Language.StringByID(StringId.Lights)).LoadTopView(function,null);
//new PublicAssmebly().LoadTopView(bodyView, Language.StringByID(StringId.Lights), function);
+
+ int magriHeight = 0;
+ if (function.GetAttribute(FunctionAttributeKey.FadeTime) != null && function.GetAttribute(FunctionAttributeKey.Colorful) != null)
+ {
+ magriHeight = 80;
+ }
FrameLayout controlView = new FrameLayout()
{
@@ -155,8 +161,9 @@
var framePickerBack = new FrameLayout();
framePickerBack.Gravity = Gravity.CenterHorizontal;
framePickerBack.Y = btnFromFoorAndRoom.Bottom + Application.GetRealHeight(1);
- framePickerBack.Width = Application.GetMinRealAverage(216);
- framePickerBack.Height = Application.GetMinRealAverage(216);
+ framePickerBack.Width = Application.GetMinRealAverage(216-magriHeight);
+ framePickerBack.Height = Application.GetMinRealAverage(216 - magriHeight);
+ //framePickerBack.BackgroundColor = 0xFFFF0000;
controlView.AddChidren(framePickerBack);
colorPicker = new ColorPicker()
@@ -177,10 +184,17 @@
//};
//鐧界偣鎺т欢
- this.btnWhiteRound = new Button();
- btnWhiteRound.Width = Application.GetRealWidth(24);
- btnWhiteRound.Height = Application.GetRealWidth(24);
- btnWhiteRound.UnSelectedImagePath = "FunctionIcon/Light/ColorWheelTip.png";
+ var diameter = Application.GetRealWidth(12);
+ this.btnWhiteRound = new Button()
+ {
+ Width = diameter,
+ Height = diameter,
+ Radius = (uint)Application.GetRealWidth(6),
+ BorderWidth = (uint)Application.GetRealWidth(1),
+ BorderColor = CSS_Color.MainBackgroundColor,
+ Enable = false,
+ };
+ //btnWhiteRound.UnSelectedImagePath = "FunctionIcon/Light/ColorWheelTip.png";
btnWhiteRound.Visible = false;
framePickerBack.AddChidren(btnWhiteRound);
@@ -188,7 +202,7 @@
var btnBrightnessText = new Button()
{
X = Application.GetRealWidth(35),
- Y = Application.GetRealHeight(308),
+ Y = Application.GetRealHeight(308 - magriHeight),
Width = Application.GetRealWidth(224),
Height = Application.GetRealHeight(21),
TextAlignment = TextAlignment.CenterLeft,
@@ -214,7 +228,7 @@
dimmerBar = new DiyImageSeekBar()
{
X = Application.GetRealWidth(35 + 22),
- Y = Application.GetRealHeight(312),
+ Y = Application.GetRealHeight(312 - magriHeight),
Width = Application.GetRealWidth(210),
Height = Application.GetRealHeight(54),
SeekBarViewHeight = Application.GetRealHeight(8),
@@ -243,21 +257,22 @@
controlView.AddChidren(btnMaxValuesText);
#endregion
+ int heightMore = 375 - magriHeight;
+
if (function.GetAttribute(FunctionAttributeKey.FadeTime) != null)
{
#region 娓愬彉鏃堕棿璋冭妭
+
var btnGradualChangeText = new Button()
{
X = Application.GetRealWidth(35),
- Y = Application.GetRealHeight(375),
+ Y = Application.GetRealHeight(heightMore),
Width = Application.GetRealWidth(224),
Height = Application.GetRealHeight(21),
TextAlignment = TextAlignment.CenterLeft,
TextColor = CSS_Color.FirstLevelTitleColor,
TextSize = CSS_FontSize.PromptFontSize_FirstLevel,
TextID = StringId.SpeedOfChange,
- Visible = function.GetAttribute(FunctionAttributeKey.FadeTime) != null,
- Enable = function.GetAttribute(FunctionAttributeKey.FadeTime) != null,
};
controlView.AddChidren(btnGradualChangeText);
@@ -271,15 +286,13 @@
TextAlignment = TextAlignment.CenterLeft,
TextColor = CSS_Color.PromptingColor1,
TextSize = CSS_FontSize.PromptFontSize_FirstLevel,
- Visible = function.GetAttribute(FunctionAttributeKey.FadeTime) != null,
- Enable = function.GetAttribute(FunctionAttributeKey.FadeTime) != null,
};
controlView.AddChidren(btnGradualChangeMinValuesText);
barFadeTime = new DiyImageSeekBar()
{
- X = btnGradualChangeMinValuesText.Right,
- Y = Application.GetRealHeight(412 - 21),
+ X = Application.GetRealWidth(35 + 22),
+ Y = Application.GetRealHeight(412 - 21-magriHeight),
Width = Application.GetRealWidth(210),
Height = Application.GetRealHeight(54),
SeekBarViewHeight = Application.GetRealHeight(8),
@@ -293,8 +306,6 @@
MaxValue = 10,
Progress = Convert.ToInt32(function.GetAttrState(FunctionAttributeKey.FadeTime)),
SeekBarPadding = Application.GetRealWidth(20),
- Visible = function.GetAttribute(FunctionAttributeKey.FadeTime) != null,
- Enable = function.GetAttribute(FunctionAttributeKey.FadeTime) != null,
};
controlView.AddChidren(barFadeTime);
barFadeTime.OnStopTrackingTouchEvent = (sender, e) =>
@@ -318,8 +329,67 @@
};
controlView.AddChidren(btnGradualChangeMaxValuesText);
#endregion
+ heightMore = 70;
}
+
+ if (function.GetAttribute(FunctionAttributeKey.Colorful)!= null)
+ {
+ #region 鐐僵鍔熻兘
+
+ var btnGradualChangeText = new Button()
+ {
+ X = Application.GetRealWidth(35),
+ Y = Application.GetRealHeight(375+ heightMore- magriHeight),
+ Width = Application.GetRealWidth(224),
+ Height = Application.GetRealHeight(21),
+ TextAlignment = TextAlignment.CenterLeft,
+ TextColor = CSS_Color.FirstLevelTitleColor,
+ TextSize = CSS_FontSize.PromptFontSize_FirstLevel,
+ TextID = StringId.ColorfulFunction,
+ };
+ controlView.AddChidren(btnGradualChangeText);
+
+ var btnGradualChangeMinValuesText = new Button()
+ {
+ X = Application.GetRealWidth(35),
+ Y = btnGradualChangeText.Bottom + Application.GetRealHeight(10),
+ Width = Application.GetRealWidth(22),
+ Height = Application.GetRealHeight(21),
+ UnSelectedImagePath = "Public/Edit.png",
+ };
+ controlView.AddChidren(btnGradualChangeMinValuesText);
+ btnGradualChangeMinValuesText.MouseUpEventHandler = (sender, e) => {
+ var rgbView = new ColorfulInfoPage(function);
+ MainPage.BasePageView.AddChidren(rgbView);
+ rgbView.LoadPage();
+ MainPage.BasePageView.PageIndex = MainPage.BasePageView.ChildrenCount - 1;
+ };
+
+ var barColorful = new FrameLayout()
+ {
+ X = btnGradualChangeMinValuesText.Right + Application.GetRealWidth(15),
+ Y = Application.GetRealHeight(412 + heightMore-magriHeight),
+ Width = Application.GetRealWidth(180),
+ Height = Application.GetRealHeight(8),
+ BackgroundImagePath = "FunctionIcon/Light/ColorfulBar.png",
+ };
+ controlView.AddChidren(barColorful);
+
+ var btnGradualChangeMaxValuesText = new Button()
+ {
+ X = barColorful.Right + Application.GetRealWidth(8),
+ Y = btnGradualChangeText.Bottom + Application.GetRealHeight(10),
+ Width = Application.GetRealWidth(38),
+ Height = Application.GetRealHeight(24),
+ UnSelectedImagePath = "Public/Switch.png"
+ };
+ controlView.AddChidren(btnGradualChangeMaxValuesText);
+ #endregion
+
+
+ }
+
btnRestoredPoint = new Button()
{
X = Application.GetRealWidth(116),
@@ -350,8 +420,6 @@
DriverLayer.Control.Ins.SendReadCommand(function);
})
{ IsBackground = true }.Start();
-
-
new System.Threading.Thread(() => {
while (true)
--
Gitblit v1.8.0