修改 模块结构
parent
0b7833ac35
commit
15779d6ef4
@ -1,14 +1,47 @@
|
||||
package com.example.beijing_daxing;
|
||||
|
||||
import androidx.appcompat.app.AppCompatActivity;
|
||||
import androidx.databinding.DataBindingUtil;
|
||||
import androidx.databinding.ViewDataBinding;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.os.Bundle;
|
||||
import android.view.View;
|
||||
|
||||
import com.example.beijing_daxing.databinding.ActivitySetingPowerBinding;
|
||||
import com.example.beijing_daxing.uitls.SharedPreferencesUtils;
|
||||
import com.example.beijing_daxing.vm.PowerData;
|
||||
|
||||
public class SetingPowerActivity extends AppCompatActivity {
|
||||
private PowerData powerData;
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.activity_seting_power);
|
||||
ActivitySetingPowerBinding binding = DataBindingUtil.setContentView(this, R.layout.activity_seting_power);
|
||||
powerData = new PowerData();
|
||||
powerData.setPowerIn( SharedPreferencesUtils.getInt("powerIn",0));
|
||||
powerData.setPowerOut( SharedPreferencesUtils.getInt("powerOut",0));
|
||||
powerData.setPowerStockCheck( SharedPreferencesUtils.getInt("powerStoreCheck",0));
|
||||
powerData.setPowerCheck( SharedPreferencesUtils.getInt("powerCheck",0));
|
||||
powerData.setPowerScrap( SharedPreferencesUtils.getInt("powerScrap",0));
|
||||
powerData.setPowerScrapIn( SharedPreferencesUtils.getInt("powerScrapIn",0));
|
||||
powerData.setPowerScrapOut( SharedPreferencesUtils.getInt("powerScrapOut",0));
|
||||
|
||||
binding.setVm(powerData);
|
||||
|
||||
}
|
||||
|
||||
public void settingSeva(View view) {
|
||||
SharedPreferencesUtils.putInt("powerIn", powerData.getPowerIn());
|
||||
SharedPreferencesUtils.putInt("powerOut", powerData.getPowerOut());
|
||||
SharedPreferencesUtils.putInt("powerStoreCheck", powerData.getPowerStockCheck());
|
||||
SharedPreferencesUtils.putInt("powerCheck", powerData.getPowerCheck());
|
||||
SharedPreferencesUtils.putInt("powerScrap", powerData.getPowerScrap());
|
||||
SharedPreferencesUtils.putInt("powerScrapIn", powerData.getPowerScrapIn());
|
||||
SharedPreferencesUtils.putInt("powerScrapOut", powerData.getPowerScrapOut());
|
||||
|
||||
finish();
|
||||
|
||||
}
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
package com.example.beijing_daxing.rfid;
|
||||
|
||||
public interface RFID {
|
||||
void initRFIDModel();
|
||||
void setPower(int power);
|
||||
void close();
|
||||
}
|
@ -0,0 +1,40 @@
|
||||
package com.example.beijing_daxing.rfid.impl;
|
||||
|
||||
import android.content.IntentFilter;
|
||||
import android.media.MediaPlayer;
|
||||
import android.util.Log;
|
||||
|
||||
import com.example.beijing_daxing.R;
|
||||
import com.example.beijing_daxing.base.BaseActivity;
|
||||
import com.example.beijing_daxing.base.MyApplication;
|
||||
import com.example.beijing_daxing.rfid.RFID;
|
||||
import com.handheld.uhfr.UHFRManager;
|
||||
import com.uhf.api.cls.Reader;
|
||||
|
||||
public class Device6109 implements RFID {
|
||||
|
||||
private UHFRManager uhfrManager;
|
||||
@Override
|
||||
public void initRFIDModel() {
|
||||
if (uhfrManager==null){
|
||||
uhfrManager=UHFRManager.getInstance();
|
||||
}
|
||||
uhfrManager.asyncStartReading();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setPower(int power) {
|
||||
Reader.READER_ERR readerErr = uhfrManager.setPower(power, power);
|
||||
Log.e("TAG", "setPower:" + readerErr);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void close() {
|
||||
if (uhfrManager==null){
|
||||
return;
|
||||
}
|
||||
uhfrManager.asyncStopReading();
|
||||
uhfrManager.close();
|
||||
uhfrManager=null;
|
||||
}
|
||||
}
|
@ -0,0 +1,76 @@
|
||||
package com.example.beijing_daxing.vm;
|
||||
|
||||
import androidx.databinding.BaseObservable;
|
||||
|
||||
public class PowerData extends BaseObservable {
|
||||
private int powerIn;
|
||||
private int powerOut;
|
||||
private int powerStockCheck;
|
||||
private int powerCheck;
|
||||
private int powerScrap;
|
||||
private int powerScrapIn;
|
||||
private int powerScrapOut;
|
||||
|
||||
public int getPowerIn() {
|
||||
return powerIn;
|
||||
}
|
||||
|
||||
public void setPowerIn(int powerIn) {
|
||||
this.powerIn = powerIn;
|
||||
notifyChange();
|
||||
}
|
||||
|
||||
public int getPowerOut() {
|
||||
return powerOut;
|
||||
}
|
||||
|
||||
public void setPowerOut(int powerOut) {
|
||||
this.powerOut = powerOut;
|
||||
notifyChange();
|
||||
}
|
||||
|
||||
public int getPowerStockCheck() {
|
||||
return powerStockCheck;
|
||||
}
|
||||
|
||||
public void setPowerStockCheck(int powerStockCheck) {
|
||||
this.powerStockCheck = powerStockCheck;
|
||||
notifyChange();
|
||||
}
|
||||
|
||||
public int getPowerCheck() {
|
||||
return powerCheck;
|
||||
}
|
||||
|
||||
public void setPowerCheck(int powerCheck) {
|
||||
this.powerCheck = powerCheck;
|
||||
notifyChange();
|
||||
}
|
||||
|
||||
public int getPowerScrap() {
|
||||
return powerScrap;
|
||||
}
|
||||
|
||||
public void setPowerScrap(int powerScrap) {
|
||||
this.powerScrap = powerScrap;
|
||||
notifyChange();
|
||||
}
|
||||
|
||||
public int getPowerScrapIn() {
|
||||
return powerScrapIn;
|
||||
}
|
||||
|
||||
public void setPowerScrapIn(int powerScrapIn) {
|
||||
this.powerScrapIn = powerScrapIn;
|
||||
notifyChange();
|
||||
}
|
||||
|
||||
public int getPowerScrapOut() {
|
||||
return powerScrapOut;
|
||||
}
|
||||
|
||||
public void setPowerScrapOut(int powerScrapOut) {
|
||||
this.powerScrapOut = powerScrapOut;
|
||||
notifyChange();
|
||||
}
|
||||
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,171 +1,179 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical"
|
||||
tools:context=".SetingPowerActivity">
|
||||
|
||||
<!-- <TextView
|
||||
style="@style/title_text"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:text="废品入库" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_marginTop="10dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
style="@style/info_text"
|
||||
android:layout_width="110dp"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="入库功率:" />
|
||||
xmlns:tools="http://schemas.android.com/tools">
|
||||
|
||||
<EditText
|
||||
style="@style/san_text"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="@={vm.epc}" />
|
||||
</LinearLayout>
|
||||
<data>
|
||||
<variable
|
||||
name="vm"
|
||||
type="com.example.beijing_daxing.vm.PowerData" />
|
||||
</data>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_marginTop="10dp"
|
||||
android:orientation="horizontal">
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical"
|
||||
tools:context=".SetingPowerActivity">
|
||||
|
||||
<TextView
|
||||
style="@style/info_text"
|
||||
android:layout_width="110dp"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="出库功率:" />
|
||||
|
||||
<TextView
|
||||
style="@style/info_text1"
|
||||
style="@style/title_text"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="@={vm.bichCode}" />
|
||||
</LinearLayout>
|
||||
android:text="设置功率" />
|
||||
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_marginTop="10dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
style="@style/info_text"
|
||||
android:layout_width="110dp"
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="轮挡位置:" />
|
||||
|
||||
<TextView
|
||||
style="@style/info_text1"
|
||||
android:layout_marginTop="10dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
style="@style/info_text"
|
||||
android:layout_width="110dp"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="入库功率:" />
|
||||
|
||||
<EditText
|
||||
style="@style/san_text"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text='@={vm.powerIn+""}' />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_gravity="center"
|
||||
android:text="@={vm.location}" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_marginTop="10dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
style="@style/info_text"
|
||||
android:layout_width="110dp"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="位置代码:" />
|
||||
|
||||
<TextView
|
||||
style="@style/info_text1"
|
||||
android:layout_marginTop="10dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
style="@style/info_text"
|
||||
android:layout_width="110dp"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="出库功率:" />
|
||||
|
||||
<EditText
|
||||
style="@style/san_text"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text='@={vm.powerOut+""}' />
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_gravity="center"
|
||||
android:text="@={vm.locationCode}" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_marginTop="10dp">
|
||||
|
||||
<TextView
|
||||
style="@style/info_text"
|
||||
android:layout_width="110dp"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="轮挡状态:" />
|
||||
|
||||
<TextView
|
||||
style="@style/info_text1"
|
||||
android:layout_marginTop="10dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
style="@style/info_text"
|
||||
android:layout_width="110dp"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="盘点功率:" />
|
||||
|
||||
<EditText
|
||||
style="@style/san_text"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_gravity="center"
|
||||
android:text='@={vm.powerStockCheck+""}' />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="@={vm.state}" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_marginTop="10dp">
|
||||
|
||||
<TextView
|
||||
style="@style/info_text"
|
||||
android:layout_width="110dp"
|
||||
android:layout_marginTop="10dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
style="@style/info_text"
|
||||
android:layout_width="110dp"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="巡检功率:" />
|
||||
|
||||
<EditText
|
||||
style="@style/san_text"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_gravity="center"
|
||||
android:text='@={vm.powerCheck+""}' />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="报废时间:" />
|
||||
|
||||
<TextView
|
||||
style="@style/info_text1"
|
||||
android:layout_marginTop="10dp">
|
||||
|
||||
<TextView
|
||||
style="@style/info_text"
|
||||
android:layout_width="110dp"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="报废功率:" />
|
||||
|
||||
<EditText
|
||||
style="@style/san_text"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text='@={vm.powerScrap+""}' />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="@={vm.time}" />
|
||||
</LinearLayout>
|
||||
android:layout_marginTop="10dp">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_marginTop="10dp"
|
||||
android:layout_marginEnd="8dp"
|
||||
android:background="@color/white">
|
||||
<TextView
|
||||
style="@style/info_text"
|
||||
android:layout_width="110dp"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="废品入库:" />
|
||||
|
||||
<EditText
|
||||
style="@style/san_text"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text='@={vm.powerScrapIn+""}' />
|
||||
</LinearLayout>
|
||||
|
||||
<TextView
|
||||
style="@style/info_text"
|
||||
android:layout_width="110dp"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:background="@color/bg1"
|
||||
android:text="选择库位:" />
|
||||
|
||||
<Spinner
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:entries="@{vm.list}"
|
||||
android:onItemSelected="@{vm.selectLocation}"
|
||||
android:textAlignment="center" />
|
||||
android:layout_marginTop="10dp">
|
||||
|
||||
<TextView
|
||||
style="@style/info_text"
|
||||
android:layout_width="110dp"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text="废品出库:" />
|
||||
|
||||
<EditText
|
||||
style="@style/san_text"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="45dp"
|
||||
android:layout_gravity="center"
|
||||
android:text='@={vm.powerScrapOut+""}' />
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
<Button
|
||||
style="@style/button_style"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="55dp"
|
||||
android:layout_margin="20dp"
|
||||
android:onClick="settingSeva"
|
||||
android:text="保存" />
|
||||
</LinearLayout>
|
||||
|
||||
<Button
|
||||
style="@style/button_style"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="55dp"
|
||||
android:layout_margin="20dp"
|
||||
android:onClick="fpin_submit"
|
||||
android:text="废品入库" />-->
|
||||
</LinearLayout>
|
||||
</layout>
|
Binary file not shown.
After Width: | Height: | Size: 3.9 KiB |
Loading…
Reference in New Issue