Browse Source

更新主界面

燃气自翻炒锅
fyf 11 months ago
parent
commit
0b4677b659
4 changed files with 1002 additions and 56 deletions
  1. +8
    -2
      app/src/main/java/com/bonait/bnframework/business/ExecuteTheRecipe.java
  2. +88
    -20
      app/src/main/java/com/bonait/bnframework/modules/home/fragment/MakeGoodFragment.java
  3. +2
    -2
      app/src/main/res/drawable/silosbj.xml
  4. +904
    -32
      app/src/main/res/layout/fragment_make_good.xml

+ 8
- 2
app/src/main/java/com/bonait/bnframework/business/ExecuteTheRecipe.java View File

@@ -564,7 +564,10 @@ public class ExecuteTheRecipe {
Object sb = ReadPLC(name);
if (sb != null) {
IsComplete[0] = (boolean) (sb);
ExecuteTheRecipe.showlog(name + ",接收到信号!");
if(IsComplete[0])
{
ExecuteTheRecipe.showlog(name + ",接收到信号!");
}
}
}
try {
@@ -595,7 +598,10 @@ public class ExecuteTheRecipe {
Object sb = ReadPLC(name);
if (sb != null) {
IsComplete[0] = (boolean) (sb);
ExecuteTheRecipe.showlog(name + ",接收到信号!");
if(IsComplete[0]==false)
{
ExecuteTheRecipe.showlog(name + ",接收到信号!");
}
}
}
try {


+ 88
- 20
app/src/main/java/com/bonait/bnframework/modules/home/fragment/MakeGoodFragment.java View File

@@ -76,6 +76,19 @@ public class MakeGoodFragment extends BaseFragment {
@BindView(R.id.xzcp)
Button xzcp;

@BindView(R.id.dialog_xtkz)
RelativeLayout dialog_xtkz;

@BindView(R.id.dialog_hlkz)
RelativeLayout dialog_hlkz;

@BindView(R.id.dialog_kbkz)
RelativeLayout dialog_kbkz;

@BindView(R.id.dialog_jykz)
RelativeLayout dialog_jykz;


/**
* 当前制作商品信息
*/
@@ -121,13 +134,35 @@ public class MakeGoodFragment extends BaseFragment {
*
* @param view
*/
@OnClick({R.id.xzcp, R.id.startbutton})
@OnClick({R.id.xzcp, R.id.startbutton
, R.id.btn_xtkz, R.id.btn_hlkz
, R.id.btn_sjkz, R.id.btn_jykz
, R.id.close_xtkz, R.id.close_hlkz
, R.id.close_kbkz, R.id.close_jykz})
public void onViewClicked(View view) {
switch (view.getId()) {
case R.id.xzcp://选择菜谱按钮点击
skipToActivity(CpxzActivity.class);
ToastUtils.info("打开菜谱选择界面");
break;
case R.id.btn_xtkz:
SetVisibility(1);
break;
case R.id.btn_hlkz:
SetVisibility(2);
break;
case R.id.btn_sjkz:
SetVisibility(3);
break;
case R.id.btn_jykz:
SetVisibility(4);
break;
case R.id.close_xtkz:
case R.id.close_hlkz:
case R.id.close_kbkz:
case R.id.close_jykz:
SetVisibility(0);
break;
case R.id.startbutton:
if (ExecuteTheRecipe.IsStart) {
//按钮点击
@@ -180,7 +215,7 @@ public class MakeGoodFragment extends BaseFragment {
SetProcesssUI(0);
startbutton.setText("开始烹饪");
startbutton.setBackgroundResource(R.drawable.bg_btn_login_selected);
SetVisibility(0);
//3.接收选择菜谱事件
DataBus.getInstance().mListener = new MyClickListener() {
@Override
@@ -271,23 +306,18 @@ public class MakeGoodFragment extends BaseFragment {
public void run() {
while (true) {
try {
if(ConfigName.getInstance().PlcIsConnect)
{
for(StatusMode mode:sbzt)
{
Object obj= ExecuteTheRecipe.ReadPLC(mode.YName);
if(obj!=null)
{
mode.Status=(boolean)obj;
if (ConfigName.getInstance().PlcIsConnect) {
for (StatusMode mode : sbzt) {
Object obj = ExecuteTheRecipe.ReadPLC(mode.YName);
if (obj != null) {
mode.Status = (boolean) obj;
}
}

for(StatusMode mode:gzzt)
{
Object obj= ExecuteTheRecipe.ReadPLC(mode.YName);
if(obj!=null)
{
mode.Status=(boolean)obj;
for (StatusMode mode : gzzt) {
Object obj = ExecuteTheRecipe.ReadPLC(mode.YName);
if (obj != null) {
mode.Status = (boolean) obj;
}
}

@@ -366,7 +396,7 @@ public class MakeGoodFragment extends BaseFragment {
}
//endregion

//region
//region 计时器
private CountDownTimerExt countDownTimer = null;//计时器

/**
@@ -485,17 +515,55 @@ public class MakeGoodFragment extends BaseFragment {
second = (int) ((millisecond / 1) % 60);
if (minute < 10) {
if (second < 10) {
return "0" + minute + "分" + "0" + second+"秒";
return "0" + minute + "分" + "0" + second + "秒";
} else {
return "0" + minute + " : " + second;
}
} else {
if (second < 10) {
return minute + "分" + "0" + second+"秒";
return minute + "分" + "0" + second + "秒";
} else {
return minute + "分" + second+"秒";
return minute + "分" + second + "秒";
}
}
}

/**
* 设置显示
*
* @param index
*/
public void SetVisibility(int index) {
try {
if (index == 1) {
dialog_xtkz.setVisibility(View.VISIBLE);
dialog_hlkz.setVisibility(View.GONE);
dialog_kbkz.setVisibility(View.GONE);
dialog_jykz.setVisibility(View.GONE);
} else if (index == 2) {
dialog_xtkz.setVisibility(View.GONE);
dialog_hlkz.setVisibility(View.VISIBLE);
dialog_kbkz.setVisibility(View.GONE);
dialog_jykz.setVisibility(View.GONE);
} else if (index == 3) {
dialog_xtkz.setVisibility(View.GONE);
dialog_hlkz.setVisibility(View.GONE);
dialog_kbkz.setVisibility(View.VISIBLE);
dialog_jykz.setVisibility(View.GONE);
} else if (index == 4) {
dialog_xtkz.setVisibility(View.GONE);
dialog_hlkz.setVisibility(View.GONE);
dialog_kbkz.setVisibility(View.GONE);
dialog_jykz.setVisibility(View.VISIBLE);
} else {
dialog_xtkz.setVisibility(View.GONE);
dialog_hlkz.setVisibility(View.GONE);
dialog_kbkz.setVisibility(View.GONE);
dialog_jykz.setVisibility(View.GONE);
}
} catch (Exception ex) {

}
}
//endregion
}

+ 2
- 2
app/src/main/res/drawable/silosbj.xml View File

@@ -8,8 +8,8 @@

<!-- 边框的颜色和粗细 -->
<stroke
android:width="20px"
android:color="@color/radiusImageView_border_color"/>
android:width="10px"
android:color="@color/file_picker_des"/>

<!-- android:radius 圆角的半径 -->
<corners android:radius="10dp"/>


+ 904
- 32
app/src/main/res/layout/fragment_make_good.xml View File

@@ -268,6 +268,7 @@
android:orientation="horizontal">

<Button
android:id="@+id/btn_xtkz"
android:layout_width="120dp"
android:layout_height="45dp"
android:layout_marginRight="15dp"
@@ -277,6 +278,8 @@
android:textSize="18sp" />

<Button
android:id="@+id/btn_hlkz"

android:layout_width="120dp"
android:layout_height="45dp"
android:layout_marginRight="15dp"
@@ -286,6 +289,8 @@
android:textSize="18sp" />

<Button
android:id="@+id/btn_sjkz"

android:layout_width="120dp"
android:layout_height="45dp"
android:layout_marginRight="15dp"
@@ -295,61 +300,928 @@
android:textSize="18sp" />

<Button
android:id="@+id/btn_jykz"
android:layout_width="120dp"
android:layout_height="45dp"
android:layout_marginRight="15dp"
android:background="@drawable/bg_btn_login_selected"
android:text="进油控制"
android:textColor="@color/white"
android:textSize="18sp" />
android:textSize="18sp"/>
</LinearLayout>
</LinearLayout>
</LinearLayout>

<LinearLayout

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:visibility="gone">
<!-- 选择菜谱 -->
<LinearLayout
android:layout_height="match_parent">
<RelativeLayout
android:id="@+id/dialog_xtkz"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/qmui_config_color_white"
android:padding="5dp">
android:background="#BD25323F"
android:visibility="gone"
>
<RelativeLayout
android:id="@+id/xzcp"
android:layout_width="wrap_content"
android:layout_height="match_parent">
android:layout_centerInParent="true"
android:layout_width="600dp"
android:layout_height="400dp"
android:background="@drawable/silosbj">
<ImageView
android:id="@+id/close_xtkz"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_marginTop="10dp"
android:layout_marginRight="10dp"
android:layout_alignParentRight="true"
android:src="@mipmap/newdelete"/>

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_marginTop="70dp"
android:layout_marginLeft="30dp"
android:layout_marginRight="30dp"
android:layout_marginBottom="30dp"
android:layout_width="match_parent"
android:layout_height="match_parent">

<ImageView
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="35dp"
android:clickable="false"
android:src="@mipmap/stcp" />
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="match_parent">
<TextView
android:layout_marginLeft="@dimen/dp_10"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:text="系统启停:"
android:textSize="19dp"/>
</RelativeLayout>

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.suke.widget.SwitchButton
android:layout_marginLeft="20dp"
app:sb_uncheck_color="@color/app_color_blue"
app:sb_uncheckcircle_color="@color/app_color_blue"
app:sb_button_color="@color/app_color_blue"
android:layout_width="80dp"
android:layout_height="wrap_content"
android:focusable="true"/>
</LinearLayout>

<TextView
<LinearLayout
android:layout_alignParentRight="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="match_parent">
<TextView
android:layout_marginLeft="@dimen/dp_10"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:text="超温停气:"
android:textSize="19dp"/>
</RelativeLayout>

<com.suke.widget.SwitchButton
android:layout_marginLeft="20dp"
app:sb_uncheck_color="@color/app_color_blue"
app:sb_uncheckcircle_color="@color/app_color_blue"
app:sb_button_color="@color/app_color_blue"
android:layout_width="80dp"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:clickable="false"
android:text="选择菜谱"
android:textSize="16dp" />
</RelativeLayout>
android:focusable="true"/>
</LinearLayout>
</RelativeLayout>

</LinearLayout>
</RelativeLayout>
</LinearLayout>
</LinearLayout>
</RelativeLayout>

<RelativeLayout
android:id="@+id/dialog_hlkz"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#BD25323F"
>
<RelativeLayout
android:layout_centerInParent="true"
android:layout_width="600dp"
android:layout_height="400dp"
android:background="@drawable/silosbj">
<ImageView
android:id="@+id/close_hlkz"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_marginTop="10dp"
android:layout_marginRight="10dp"
android:layout_alignParentRight="true"
android:src="@mipmap/newdelete"/>

<RelativeLayout
android:layout_marginTop="70dp"
android:layout_marginLeft="30dp"
android:layout_marginRight="30dp"
android:layout_marginBottom="30dp"
android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="match_parent">
<TextView
android:layout_marginLeft="@dimen/dp_10"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:text="点火模式:"
android:textSize="19dp"/>
</RelativeLayout>

<Spinner
style="@style/commonSpinnerStyle"
android:layout_width="80dp"
android:layout_height="24dp"
android:layout_centerVertical="true" />
</LinearLayout>

<LinearLayout
android:layout_alignParentRight="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<Button
android:layout_width="120dp"
android:layout_height="45dp"
android:layout_marginRight="15dp"
android:background="@drawable/bg_btn_login_selected"
android:text="点火开关"
android:textColor="@color/white"
android:textSize="18sp" />
<Button
android:layout_width="120dp"
android:layout_height="45dp"
android:layout_marginRight="15dp"
android:background="@drawable/bg_btn_login_selected"
android:text="点火复位"
android:textColor="@color/white"
android:textSize="18sp" />
</LinearLayout>
</RelativeLayout>

<RelativeLayout
android:layout_marginTop="10dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="match_parent">
<TextView
android:layout_marginLeft="@dimen/dp_10"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:text="小火控制:"
android:textSize="19dp"/>
</RelativeLayout>

<com.litao.slider.NiftySlider
android:layout_width="340dp"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/dp_10"
android:layout_centerVertical="true"
android:hapticFeedbackEnabled="true"
android:stepSize="1"
android:value="0"
android:valueFrom="0"
android:valueTo="60"
app:enableDrawHalo="false"
app:thumbColor="@color/we_read_thumb_color"
app:thumbRadius="11dp"
app:thumbText="0"
app:thumbTextBold="true"
app:thumbTextColor="@color/we_read_theme_color"
app:thumbTextSize="12sp"
app:thumbWithinTrackBounds="true"
app:trackColor="@color/pro1"
app:trackColorInactive="@color/pro2"
app:trackHeight="15dp" />
</LinearLayout>

<LinearLayout
android:layout_alignParentRight="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<com.suke.widget.SwitchButton
android:layout_marginLeft="20dp"
app:sb_uncheck_color="@color/app_color_blue"
app:sb_uncheckcircle_color="@color/app_color_blue"
app:sb_button_color="@color/app_color_blue"
android:layout_width="80dp"
android:layout_height="wrap_content"
android:focusable="true"/>
</RelativeLayout>
</LinearLayout>
</RelativeLayout>

<RelativeLayout
android:layout_marginTop="10dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="match_parent">
<TextView
android:layout_marginLeft="@dimen/dp_10"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:text="小火控制:"
android:textSize="19dp"/>
</RelativeLayout>

<com.litao.slider.NiftySlider
android:layout_width="340dp"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/dp_10"
android:layout_centerVertical="true"
android:hapticFeedbackEnabled="true"
android:stepSize="1"
android:value="0"
android:valueFrom="0"
android:valueTo="60"
app:enableDrawHalo="false"
app:thumbColor="@color/we_read_thumb_color"
app:thumbRadius="11dp"
app:thumbText="0"
app:thumbTextBold="true"
app:thumbTextColor="@color/we_read_theme_color"
app:thumbTextSize="12sp"
app:thumbWithinTrackBounds="true"
app:trackColor="@color/pro1"
app:trackColorInactive="@color/pro2"
app:trackHeight="15dp" />
</LinearLayout>

<LinearLayout
android:layout_alignParentRight="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<com.suke.widget.SwitchButton
android:layout_marginLeft="20dp"
app:sb_uncheck_color="@color/app_color_blue"
app:sb_uncheckcircle_color="@color/app_color_blue"
app:sb_button_color="@color/app_color_blue"
android:layout_width="80dp"
android:layout_height="wrap_content"
android:focusable="true"/>
</RelativeLayout>
</LinearLayout>
</RelativeLayout>

<RelativeLayout
android:layout_marginTop="10dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="match_parent">
<TextView
android:layout_marginLeft="@dimen/dp_10"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:text="小火控制:"
android:textSize="19dp"/>
</RelativeLayout>

<com.litao.slider.NiftySlider
android:layout_width="340dp"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/dp_10"
android:layout_centerVertical="true"
android:hapticFeedbackEnabled="true"
android:stepSize="1"
android:value="0"
android:valueFrom="0"
android:valueTo="60"
app:enableDrawHalo="false"
app:thumbColor="@color/we_read_thumb_color"
app:thumbRadius="11dp"
app:thumbText="0"
app:thumbTextBold="true"
app:thumbTextColor="@color/we_read_theme_color"
app:thumbTextSize="12sp"
app:thumbWithinTrackBounds="true"
app:trackColor="@color/pro1"
app:trackColorInactive="@color/pro2"
app:trackHeight="15dp" />
</LinearLayout>

<LinearLayout
android:layout_alignParentRight="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<com.suke.widget.SwitchButton
android:layout_marginLeft="20dp"
app:sb_uncheck_color="@color/app_color_blue"
app:sb_uncheckcircle_color="@color/app_color_blue"
app:sb_button_color="@color/app_color_blue"
android:layout_width="80dp"
android:layout_height="wrap_content"
android:focusable="true"/>
</RelativeLayout>
</LinearLayout>
</RelativeLayout>

<RelativeLayout
android:layout_marginTop="10dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="match_parent">
<TextView
android:layout_marginLeft="@dimen/dp_10"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:text="小火控制:"
android:textSize="19dp"/>
</RelativeLayout>

<com.litao.slider.NiftySlider
android:layout_width="340dp"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/dp_10"
android:layout_centerVertical="true"
android:hapticFeedbackEnabled="true"
android:stepSize="1"
android:value="0"
android:valueFrom="0"
android:valueTo="60"
app:enableDrawHalo="false"
app:thumbColor="@color/we_read_thumb_color"
app:thumbRadius="11dp"
app:thumbText="0"
app:thumbTextBold="true"
app:thumbTextColor="@color/we_read_theme_color"
app:thumbTextSize="12sp"
app:thumbWithinTrackBounds="true"
app:trackColor="@color/pro1"
app:trackColorInactive="@color/pro2"
app:trackHeight="15dp" />
</LinearLayout>

<LinearLayout
android:layout_alignParentRight="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<com.suke.widget.SwitchButton
android:layout_marginLeft="20dp"
app:sb_uncheck_color="@color/app_color_blue"
app:sb_uncheckcircle_color="@color/app_color_blue"
app:sb_button_color="@color/app_color_blue"
android:layout_width="80dp"
android:layout_height="wrap_content"
android:focusable="true"/>
</RelativeLayout>
</LinearLayout>
</RelativeLayout>

<RelativeLayout
android:layout_marginTop="10dp"

android:layout_width="wrap_content"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:layout_marginLeft="@dimen/dp_10"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:text="温度修正:"
android:textSize="19dp"/>
</RelativeLayout>

<EditText
android:layout_width="120dp"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:background="@drawable/input_bj"
android:hint="请输入"
android:inputType="number"
android:maxLines="1"
android:padding="3dp"
android:textSize="12dp"
android:text="0"/>

<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="match_parent">
<TextView
android:layout_marginLeft="@dimen/dp_10"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:text="温度上限:"
android:textSize="19dp"/>
</RelativeLayout>

<EditText
android:layout_width="120dp"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:background="@drawable/input_bj"
android:hint="请输入"
android:inputType="number"
android:maxLines="1"
android:padding="3dp"
android:textSize="12dp"
android:text="0"/>
</LinearLayout>
</RelativeLayout>

<RelativeLayout
android:layout_marginTop="10dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="match_parent">
<TextView
android:layout_marginLeft="@dimen/dp_10"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:text="点火控制:"
android:textSize="19dp"/>
</RelativeLayout>

<com.suke.widget.SwitchButton
android:layout_marginLeft="20dp"
app:sb_uncheck_color="@color/app_color_blue"
app:sb_uncheckcircle_color="@color/app_color_blue"
app:sb_button_color="@color/app_color_blue"
android:layout_width="80dp"
android:layout_height="wrap_content"
android:focusable="true"/>

<TextView
android:layout_marginLeft="30dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:text="点火失败"
android:textSize="19dp"/>
</LinearLayout>
</RelativeLayout>
</LinearLayout>

</RelativeLayout>
</RelativeLayout>


</RelativeLayout>

<RelativeLayout
android:id="@+id/dialog_kbkz"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#BD25323F"
android:visibility="gone">
<RelativeLayout
android:layout_centerInParent="true"
android:layout_width="600dp"
android:layout_height="400dp"
android:background="@drawable/silosbj">
<ImageView
android:id="@+id/close_kbkz"

android:layout_width="50dp"
android:layout_height="50dp"
android:layout_marginTop="10dp"
android:layout_marginRight="10dp"
android:layout_alignParentRight="true"
android:src="@mipmap/newdelete"/>


<RelativeLayout
android:layout_marginTop="70dp"
android:layout_marginLeft="30dp"
android:layout_marginRight="30dp"
android:layout_marginBottom="30dp"
android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="match_parent">
<TextView
android:layout_marginLeft="@dimen/dp_10"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:text="搅拌控制:"
android:textSize="19dp"/>
</RelativeLayout>

<com.suke.widget.SwitchButton
android:layout_marginLeft="20dp"
app:sb_uncheck_color="@color/app_color_blue"
app:sb_uncheckcircle_color="@color/app_color_blue"
app:sb_button_color="@color/app_color_blue"
android:layout_width="80dp"
android:layout_height="wrap_content"
android:focusable="true"/>
</LinearLayout>

<LinearLayout
android:layout_alignParentRight="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<Button
android:layout_width="180dp"
android:layout_height="45dp"
android:layout_marginRight="15dp"
android:background="@drawable/bg_btn_login_selected"
android:text="搅拌点动"
android:textColor="@color/white"
android:textSize="18sp" />
</LinearLayout>
</RelativeLayout>

<RelativeLayout
android:layout_marginTop="20dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<Button
android:layout_width="140dp"
android:layout_height="45dp"
android:layout_marginRight="15dp"
android:background="@drawable/bg_btn_login_selected"
android:text="搅拌上升"
android:textColor="@color/white"
android:textSize="18sp" />
</RelativeLayout>

<ImageView
android:layout_width="30dp"
android:layout_height="match_parent"
android:src="@mipmap/status_y"/>
</LinearLayout>

<LinearLayout
android:layout_alignParentRight="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<Button
android:layout_width="140dp"
android:layout_height="45dp"
android:layout_marginRight="15dp"
android:background="@drawable/bg_btn_login_selected"
android:text="锅前倾"
android:textColor="@color/white"
android:textSize="18sp" />
</RelativeLayout>

<ImageView
android:layout_width="30dp"
android:layout_height="match_parent"
android:src="@mipmap/status_y"/>
</LinearLayout>
</RelativeLayout>

<RelativeLayout
android:layout_marginTop="20dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<Button
android:layout_width="140dp"
android:layout_height="45dp"
android:layout_marginRight="15dp"
android:background="@drawable/bg_btn_login_selected"
android:text="搅拌下降"
android:textColor="@color/white"
android:textSize="18sp" />
</RelativeLayout>

<ImageView
android:layout_width="30dp"
android:layout_height="match_parent"
android:src="@mipmap/status_y"/>
</LinearLayout>

<LinearLayout
android:layout_alignParentRight="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<Button
android:layout_width="140dp"
android:layout_height="45dp"
android:layout_marginRight="15dp"
android:background="@drawable/bg_btn_login_selected"
android:text="锅后仰"
android:textColor="@color/white"
android:textSize="18sp" />
</RelativeLayout>

<ImageView
android:layout_width="30dp"
android:layout_height="match_parent"
android:src="@mipmap/status_y"/>
</LinearLayout>
</RelativeLayout>
</LinearLayout>

</RelativeLayout>
</RelativeLayout>
</RelativeLayout>

<RelativeLayout
android:id="@+id/dialog_jykz"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#BD25323F"
android:visibility="gone">
<RelativeLayout
android:layout_centerInParent="true"
android:layout_width="600dp"
android:layout_height="400dp"
android:background="@drawable/silosbj">
<ImageView
android:id="@+id/close_jykz"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_marginTop="10dp"
android:layout_marginRight="10dp"
android:layout_alignParentRight="true"
android:src="@mipmap/newdelete"/>

<RelativeLayout
android:layout_marginTop="70dp"
android:layout_marginLeft="30dp"
android:layout_marginRight="30dp"
android:layout_marginBottom="30dp"
android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="match_parent">
<TextView
android:layout_marginLeft="@dimen/dp_10"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:text="当前重量:"
android:textSize="19dp"/>
</RelativeLayout>

<TextView
android:layout_marginLeft="@dimen/dp_10"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:text="100kg"
android:textColor="@color/app_color_blue"
android:textSize="19dp"/>
</LinearLayout>

<LinearLayout
android:layout_alignParentRight="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="match_parent">
<TextView
android:layout_marginLeft="@dimen/dp_10"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:text="选择原油:"
android:textSize="19dp"/>
</RelativeLayout>

<Spinner
style="@style/commonSpinnerStyle"
android:layout_width="80dp"
android:layout_height="24dp"
android:layout_centerVertical="true" />
</LinearLayout>
</RelativeLayout>

<RelativeLayout
android:layout_marginTop="20dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:layout_marginLeft="@dimen/dp_10"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:text="设定重量:"
android:textSize="19dp"/>
</RelativeLayout>

<EditText
android:layout_width="120dp"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:background="@drawable/input_bj"
android:hint="请输入温度"
android:inputType="number"
android:maxLines="1"
android:padding="3dp"
android:textSize="12dp"
android:text="0"/>

<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="match_parent">
<TextView
android:layout_marginLeft="@dimen/dp_10"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:text="提前量:"
android:textSize="19dp"/>
</RelativeLayout>

<EditText
android:layout_width="120dp"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:background="@drawable/input_bj"
android:hint="请输入温度"
android:inputType="number"
android:maxLines="1"
android:padding="3dp"
android:textSize="12dp"
android:text="0"/>

<Button
android:layout_width="100dp"
android:layout_height="45dp"
android:layout_marginLeft="15dp"
android:background="@drawable/bg_btn_login_selected"
android:text="出料"
android:textColor="@color/white"
android:textSize="18sp" />
</LinearLayout>


</RelativeLayout>

<RelativeLayout
android:layout_marginTop="20dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="match_parent">
<TextView
android:layout_marginLeft="@dimen/dp_10"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:text="抽油启停:"
android:textSize="19dp"/>
</RelativeLayout>

<com.suke.widget.SwitchButton
android:layout_marginLeft="20dp"
app:sb_uncheck_color="@color/app_color_blue"
app:sb_uncheckcircle_color="@color/app_color_blue"
app:sb_button_color="@color/app_color_blue"
android:layout_width="80dp"
android:layout_height="wrap_content"
android:focusable="true"/>
</LinearLayout>

<LinearLayout
android:layout_alignParentRight="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="match_parent">
<TextView
android:layout_marginLeft="@dimen/dp_10"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:text="备用气缸:"
android:textSize="19dp"/>
</RelativeLayout>

<com.suke.widget.SwitchButton
android:layout_marginLeft="20dp"
app:sb_uncheck_color="@color/app_color_blue"
app:sb_uncheckcircle_color="@color/app_color_blue"
app:sb_button_color="@color/app_color_blue"
android:layout_width="80dp"
android:layout_height="wrap_content"
android:focusable="true"/>
</LinearLayout>
</RelativeLayout>
</LinearLayout>

</RelativeLayout>
</RelativeLayout>
</RelativeLayout>
</RelativeLayout>

</RelativeLayout>



Loading…
Cancel
Save