修改 模块结构

idata
wanghao 7 months ago
parent 0b7833ac35
commit 15779d6ef4

@ -39,43 +39,23 @@ android {
dependencies { dependencies {
implementation(platform("org.jetbrains.kotlin:kotlin-bom:1.8.0")) implementation(platform("org.jetbrains.kotlin:kotlin-bom:1.8.0"))
implementation 'androidx.appcompat:appcompat:1.6.1' implementation 'androidx.appcompat:appcompat:1.6.1'
//noinspection GradleCompatible
implementation 'com.google.android.material:material:1.8.0' implementation 'com.google.android.material:material:1.8.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4' implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.legacy:legacy-support-v4:1.0.0' implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation files('libs\\App_Demo_API.jar') implementation files('libs\\6109\\App_Demo_API.jar')
implementation files('libs\\DeviceAPIver20150204.jar') implementation files('libs\\6109\\DeviceAPIver20150204.jar')
implementation files('libs\\logutil-1.5.1.1.jar') implementation files('libs\\6109\\logutil-1.5.1.1.jar')
implementation files('libs\\ModuleAPI_J.jar') implementation files('libs\\6109\\ModuleAPI_J.jar')
implementation files('libs\\reader(1).jar') implementation files('libs\\6109\\reader(1).jar')
implementation files('libs\\UHF67_v3.6.jar') implementation files('libs\\6109\\UHF67_v3.6.jar')
// implementation files('libs\\uhflonger_v1.3.jar')
// implementation files('libs\\ModuleAPI_J.jar')
testImplementation 'junit:junit:4.13.2' testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5' androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
implementation 'com.lzy.net:okgo:3.0.4' implementation 'com.lzy.net:okgo:3.0.4'
// https://mvnrepository.com/artifact/com.google.code.gson/gson
implementation 'com.google.code.gson:gson:2.10.1' implementation 'com.google.code.gson:gson:2.10.1'
// https://mvnrepository.com/artifact/com.contrarywind/Android-PickerView
// implementation 'com.contrarywind:Android-PickerView:4.1.9'
implementation 'org.litepal.android:java:3.0.0' implementation 'org.litepal.android:java:3.0.0'
implementation 'com.github.xuexiangjys:XUpdate:2.1.4' implementation 'com.github.xuexiangjys:XUpdate:2.1.4'
implementation 'com.github.xuexiangjys.XUpdateAPI:xupdate-easy:1.0.1' implementation 'com.github.xuexiangjys.XUpdateAPI:xupdate-easy:1.0.1'
//
//
// implementation 'com.lzy.net:okhttputils:1.6.0' //使
// implementation 'com.lzy.net:okhttpserver:0.1.7' //
// implementation 'com.jakewharton:butterknife:10.2.0'
// annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.0'
// implementation 'com.github.bumptech.glide:glide:4.8.0'
// annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'
// https://mvnrepository.com/artifact/com.github.bumptech.glide/glide
implementation 'com.github.bumptech.glide:glide:4.16.0' implementation 'com.github.bumptech.glide:glide:4.16.0'
} }

@ -61,12 +61,8 @@ public class HomePageActivity extends AppCompatActivity {
@Override @Override
protected void onDestroy() { protected void onDestroy() {
super.onDestroy(); super.onDestroy();
var uhfLongerManager = MyApplication.getUhfLongerManager();
uhfLongerManager.asyncStopReading();
uhfLongerManager.close();
MyApplication.uhfLongerManager = null;
Log.e("TAG", "关闭" ); Log.e("TAG", "关闭" );
// unregisterReceiver(myNetWorkReceiver);
} }
private void initUi(ActivityHomePageBinding binding) { private void initUi(ActivityHomePageBinding binding) {
@ -75,11 +71,10 @@ public class HomePageActivity extends AppCompatActivity {
list.add(new HomeIcon(R.mipmap.home_out1, "轮挡领用出库", OutActivity.class)); list.add(new HomeIcon(R.mipmap.home_out1, "轮挡领用出库", OutActivity.class));
list.add(new HomeIcon(R.mipmap.home_store_check, "仓库盘点", StoreCheckActivity.class)); list.add(new HomeIcon(R.mipmap.home_store_check, "仓库盘点", StoreCheckActivity.class));
list.add(new HomeIcon(R.mipmap.home_check, "轮挡巡检", CheckActivity.class)); list.add(new HomeIcon(R.mipmap.home_check, "轮挡巡检", CheckActivity.class));
// list.add(new HomeIcon(R.mipmap.home_check, "轮挡巡检", OffLineCheckActivity.class));
list.add(new HomeIcon(R.mipmap.home_bf, "轮挡报废", BFActivity.class)); list.add(new HomeIcon(R.mipmap.home_bf, "轮挡报废", BFActivity.class));
list.add(new HomeIcon(R.mipmap.home_in, "废品入库", FpInActivity.class)); list.add(new HomeIcon(R.mipmap.home_in, "废品入库", FpInActivity.class));
list.add(new HomeIcon(R.mipmap.home_out, "废品出库", FpOutActivity.class)); list.add(new HomeIcon(R.mipmap.home_out, "废品出库", FpOutActivity.class));
// list.add(new HomeIcon(R.mipmap.home_out, "功率设置", FpOutActivity.class)); list.add(new HomeIcon(R.mipmap.home_setting, "功率设置", SetingPowerActivity.class));
var intent = getIntent(); var intent = getIntent();
try { try {
if (!intent.getStringExtra("user").equals("admin")) { if (!intent.getStringExtra("user").equals("admin")) {

@ -1,14 +1,47 @@
package com.example.beijing_daxing; package com.example.beijing_daxing;
import androidx.appcompat.app.AppCompatActivity; import androidx.appcompat.app.AppCompatActivity;
import androidx.databinding.DataBindingUtil;
import androidx.databinding.ViewDataBinding;
import android.app.Activity;
import android.os.Bundle; 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 { public class SetingPowerActivity extends AppCompatActivity {
private PowerData powerData;
@Override @Override
protected void onCreate(Bundle savedInstanceState) { protected void onCreate(Bundle savedInstanceState) {
super.onCreate(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();
} }
} }

@ -60,6 +60,7 @@ public abstract class BaseActivity extends AppCompatActivity {
protected void onCreate(Bundle savedInstanceState) { protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState); super.onCreate(savedInstanceState);
gson = new Gson(); gson = new Gson();
initDialog(); initDialog();
initSan(); initSan();
broadcastIntent = new Intent("android.rfid.FUN_KEY"); broadcastIntent = new Intent("android.rfid.FUN_KEY");
@ -101,10 +102,6 @@ public abstract class BaseActivity extends AppCompatActivity {
} }
private void initSan() { private void initSan() {
uhfLongerManager = MyApplication.getUhfLongerManager();
// intentFilter.addAction("android.intent.action.FUN_KEY");
uhfLongerManager.asyncStartReading();
myReceiver = new MyReceiver(); myReceiver = new MyReceiver();
IntentFilter intentFilter = new IntentFilter(); IntentFilter intentFilter = new IntentFilter();
@ -148,9 +145,7 @@ public abstract class BaseActivity extends AppCompatActivity {
outputImage = new File(getExternalCacheDir(), "output_imgage" + format.format(new Date()) + ".jpg"); outputImage = new File(getExternalCacheDir(), "output_imgage" + format.format(new Date()) + ".jpg");
// if (outputImage.exists()) {
// outputImage.delete();
// }
try { try {
outputImage.createNewFile(); outputImage.createNewFile();
@ -160,15 +155,12 @@ public abstract class BaseActivity extends AppCompatActivity {
} }
if (Build.VERSION.SDK_INT >= 24) { if (Build.VERSION.SDK_INT >= 24) {
img_uri = FileProvider.getUriForFile(this, "com.example.beijing_daxing", outputImage); img_uri = FileProvider.getUriForFile(this, "com.example.beijing_daxing", outputImage);
Log.e("TAG", "teke_photo1"+img_uri.toString() ); Log.e("TAG", "teke_photo1" + img_uri.toString());
} else { } else {
img_uri = Uri.fromFile(outputImage); img_uri = Uri.fromFile(outputImage);
Log.e("TAG", "teke_photo2" ); Log.e("TAG", "teke_photo2");
} }
if ( if (PackageManager.PERMISSION_GRANTED == ContextCompat.checkSelfPermission(this, Manifest.permission.CAMERA)) {
PackageManager.PERMISSION_GRANTED == ContextCompat.checkSelfPermission(this, Manifest.permission.CAMERA)
) {
Intent intent = new Intent("android.media.action.IMAGE_CAPTURE"); Intent intent = new Intent("android.media.action.IMAGE_CAPTURE");
intent.putExtra(MediaStore.EXTRA_OUTPUT, img_uri); intent.putExtra(MediaStore.EXTRA_OUTPUT, img_uri);
startActivityForResult(intent, CAMERA_PHOTO); startActivityForResult(intent, CAMERA_PHOTO);

@ -39,7 +39,8 @@ import okhttp3.OkHttpClient;
public class MyApplication extends Application { public class MyApplication extends Application {
MyApplication application; MyApplication application;
public static UHFRManager uhfLongerManager; // public static UHFRManager uhfLongerManager;
@Override @Override
public void onCreate() { public void onCreate() {
super.onCreate(); super.onCreate();
@ -47,32 +48,30 @@ public class MyApplication extends Application {
LitePal.initialize(this); LitePal.initialize(this);
SharedPreferencesUtils.init(getApplicationContext(), "myapp"); SharedPreferencesUtils.init(getApplicationContext(), "myapp");
okGoBase(); okGoBase();
getUhfLongerManager(); // getUhfLongerManager();
XUpdate.get() XUpdate.get().debug(true).isWifiOnly(false) // 默认设置只在wifi下检查版本更新
.debug(true) .isGet(true) // 默认设置使用get请求检查版本
.isWifiOnly(false) //默认设置只在wifi下检查版本更新 .isAutoMode(false) // 默认设置非自动模式,可根据具体使用配置
.isGet(true) //默认设置使用get请求检查版本
.isAutoMode(false) //默认设置非自动模式,可根据具体使用配置
// .param("versionCode", UpdateUtils.getVersionCode(this)) //设置默认公共请求参数 // .param("versionCode", UpdateUtils.getVersionCode(this)) //设置默认公共请求参数
// .param("appKey", getPackageName()) // .param("appKey", getPackageName())
.supportSilentInstall(false) //设置是否支持静默安装默认是true .supportSilentInstall(false) // 设置是否支持静默安装默认是true
.setIUpdateHttpService(new OkHttpUpdateHttpServiceImpl()) //这个必须设置!实现网络请求功能。 .setIUpdateHttpService(new OkHttpUpdateHttpServiceImpl()) // 这个必须设置!实现网络请求功能。
.init(this); .init(this);
} }
public static UHFRManager getUhfLongerManager() { // public static UHFRManager getUhfLongerManager() {
if (uhfLongerManager==null){ // if (uhfLongerManager==null){
try { // try {
uhfLongerManager = UHFRManager.getInstance(); // uhfLongerManager = UHFRManager.getInstance();
uhfLongerManager.setPower(33,33); // uhfLongerManager.setPower(33,33);
} catch (Exception e) { // } catch (Exception e) {
e.printStackTrace(); // e.printStackTrace();
} // }
} // }
//
return uhfLongerManager; // return uhfLongerManager;
} // }
// OKGO 初始化 // OKGO 初始化
private void okGoBase() { private void okGoBase() {
OkHttpClient.Builder builder = new OkHttpClient.Builder(); OkHttpClient.Builder builder = new OkHttpClient.Builder();
@ -85,11 +84,11 @@ public class MyApplication extends Application {
HttpsUtils.SSLParams sslParams1 = HttpsUtils.getSslSocketFactory(); HttpsUtils.SSLParams sslParams1 = HttpsUtils.getSslSocketFactory();
builder.sslSocketFactory(sslParams1.sSLSocketFactory, sslParams1.trustManager); builder.sslSocketFactory(sslParams1.sSLSocketFactory, sslParams1.trustManager);
builder.addInterceptor(loggingInterceptor); builder.addInterceptor(loggingInterceptor);
// 全局的读取超时时间 // 全局的读取超时时间
builder.readTimeout(3000, TimeUnit.MILLISECONDS); builder.readTimeout(3000, TimeUnit.MILLISECONDS);
// 全局的写入超时时间 // 全局的写入超时时间
builder.writeTimeout(3000, TimeUnit.MILLISECONDS); builder.writeTimeout(3000, TimeUnit.MILLISECONDS);
// 全局的连接超时时间 // 全局的连接超时时间
builder.connectTimeout(3000, TimeUnit.MILLISECONDS); builder.connectTimeout(3000, TimeUnit.MILLISECONDS);
// 使用内存保持cookieapp退出后cookie消失 // 使用内存保持cookieapp退出后cookie消失
builder.cookieJar(new CookieJarImpl(new MemoryCookieStore())); builder.cookieJar(new CookieJarImpl(new MemoryCookieStore()));
@ -101,4 +100,6 @@ public class MyApplication extends Application {
} }
} }

@ -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();
}
}

@ -1,171 +1,179 @@
<?xml version="1.0" encoding="utf-8"?> <?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:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" 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="入库功率:" />
<EditText <data>
style="@style/san_text" <variable
android:layout_width="match_parent" name="vm"
android:layout_height="45dp" type="com.example.beijing_daxing.vm.PowerData" />
android:layout_gravity="center" </data>
android:text="@={vm.epc}" />
</LinearLayout>
<LinearLayout <LinearLayout
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="45dp" android:layout_height="match_parent"
android:layout_marginTop="10dp" android:orientation="vertical"
android:orientation="horizontal"> tools:context=".SetingPowerActivity">
<TextView <TextView
style="@style/info_text" style="@style/title_text"
android:layout_width="110dp"
android:layout_height="45dp"
android:layout_gravity="center"
android:text="出库功率:" />
<TextView
style="@style/info_text1"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="45dp" android:layout_height="45dp"
android:layout_gravity="center" android:text="设置功率" />
android:text="@={vm.bichCode}" />
</LinearLayout>
<LinearLayout
<LinearLayout android:layout_width="match_parent"
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_height="45dp"
android:layout_gravity="center" android:layout_marginTop="10dp"
android:text="轮挡位置:" /> android:orientation="horizontal">
<TextView <TextView
style="@style/info_text1" 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_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_height="45dp"
android:layout_gravity="center" android:layout_marginTop="10dp"
android:text="位置代码:" /> android:orientation="horizontal">
<TextView <TextView
style="@style/info_text1" 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_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_height="45dp"
android:layout_gravity="center" android:layout_marginTop="10dp"
android:text="轮挡状态:" /> android:orientation="horizontal">
<TextView <TextView
style="@style/info_text1" 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_width="match_parent"
android:layout_height="45dp" android:layout_height="45dp"
android:layout_gravity="center" android:layout_marginTop="10dp"
android:text="@={vm.state}" /> android:orientation="horizontal">
</LinearLayout>
<TextView
<LinearLayout style="@style/info_text"
android:layout_width="match_parent" android:layout_width="110dp"
android:layout_height="45dp" android:layout_height="45dp"
android:layout_marginTop="10dp"> android:layout_gravity="center"
android:text="巡检功率:" />
<TextView
style="@style/info_text" <EditText
android:layout_width="110dp" 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_height="45dp"
android:layout_gravity="center" android:layout_marginTop="10dp">
android:text="报废时间:" />
<TextView
<TextView style="@style/info_text"
style="@style/info_text1" 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_width="match_parent"
android:layout_height="45dp" android:layout_height="45dp"
android:layout_gravity="center" android:layout_marginTop="10dp">
android:text="@={vm.time}" />
</LinearLayout>
<LinearLayout <TextView
android:layout_width="match_parent" style="@style/info_text"
android:layout_height="45dp" android:layout_width="110dp"
android:layout_marginTop="10dp" android:layout_height="45dp"
android:layout_marginEnd="8dp" android:layout_gravity="center"
android:background="@color/white"> 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_width="match_parent"
android:layout_height="45dp" android:layout_height="45dp"
android:entries="@{vm.list}" android:layout_marginTop="10dp">
android:onItemSelected="@{vm.selectLocation}"
android:textAlignment="center" /> <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> </LinearLayout>
</layout>
<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>

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Loading…
Cancel
Save