|
|
@ -18,7 +18,8 @@ import androidx.appcompat.app.AppCompatActivity;
|
|
|
|
|
|
|
|
|
|
|
|
import com.example.beijing_daxing.R;
|
|
|
|
import com.example.beijing_daxing.R;
|
|
|
|
import com.google.gson.Gson;
|
|
|
|
import com.google.gson.Gson;
|
|
|
|
import com.handheld.UHFLonger.UHFLongerManager;
|
|
|
|
import com.handheld.uhfr.*;
|
|
|
|
|
|
|
|
import com.uhf.api.cls.Reader;
|
|
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
|
@ -26,14 +27,13 @@ import okhttp3.MediaType;
|
|
|
|
|
|
|
|
|
|
|
|
public abstract class BaseActivity extends AppCompatActivity {
|
|
|
|
public abstract class BaseActivity extends AppCompatActivity {
|
|
|
|
// public static String url = "http://192.168.0.102:8090/api";
|
|
|
|
// public static String url = "http://192.168.0.102:8090/api";
|
|
|
|
public static String url = "http://175.27.215.92:8090/api";
|
|
|
|
public static String url = "http://119.45.202.115:8090/api";
|
|
|
|
public ProgressDialog dialog;
|
|
|
|
public ProgressDialog dialog;
|
|
|
|
public Gson gson;
|
|
|
|
public Gson gson;
|
|
|
|
public MediaType JSON = MediaType.parse("application/json; charset=utf-8");
|
|
|
|
public MediaType JSON = MediaType.parse("application/json; charset=utf-8");
|
|
|
|
public UHFLongerManager uhfLongerManager;
|
|
|
|
public UHFRManager uhfLongerManager;
|
|
|
|
private MediaPlayer mediaPlayer;
|
|
|
|
private MediaPlayer mediaPlayer;
|
|
|
|
public MyReceiver myReceiver;
|
|
|
|
public MyReceiver myReceiver;
|
|
|
|
|
|
|
|
|
|
|
|
public Intent broadcastIntent;
|
|
|
|
public Intent broadcastIntent;
|
|
|
|
|
|
|
|
|
|
|
|
@SuppressLint("UnspecifiedRegisterReceiverFlag")
|
|
|
|
@SuppressLint("UnspecifiedRegisterReceiverFlag")
|
|
|
@ -43,9 +43,9 @@ public abstract class BaseActivity extends AppCompatActivity {
|
|
|
|
gson = new Gson();
|
|
|
|
gson = new Gson();
|
|
|
|
initDialog();
|
|
|
|
initDialog();
|
|
|
|
initSan();
|
|
|
|
initSan();
|
|
|
|
Intent intent = new Intent();
|
|
|
|
|
|
|
|
broadcastIntent = new Intent("android.rfid.FUN_KEY");
|
|
|
|
broadcastIntent = new Intent("android.rfid.FUN_KEY");
|
|
|
|
broadcastIntent.putExtra("keydown", false);
|
|
|
|
broadcastIntent.putExtra("keydown", false);
|
|
|
|
|
|
|
|
// broadcastIntent.setComponent(new ComponentName("com.example.beijing_daxing",".base.BaseActivity$MyReceiver"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// private long readTime = 0;
|
|
|
|
// private long readTime = 0;
|
|
|
|
|
|
|
|
|
|
|
@ -55,19 +55,24 @@ public abstract class BaseActivity extends AppCompatActivity {
|
|
|
|
public void onReceive(Context context, Intent intent) {
|
|
|
|
public void onReceive(Context context, Intent intent) {
|
|
|
|
|
|
|
|
|
|
|
|
var keydown = intent.getBooleanExtra("keydown", false);
|
|
|
|
var keydown = intent.getBooleanExtra("keydown", false);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Log.e("TAG", "接收到广播:" + keydown);
|
|
|
|
if (!keydown) {
|
|
|
|
if (!keydown) {
|
|
|
|
// readTime = System.currentTimeMillis();
|
|
|
|
// readTime = System.currentTimeMillis();
|
|
|
|
List<String> strings = uhfLongerManager.inventoryRealTime();
|
|
|
|
sanEpc();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void sanEpc(){
|
|
|
|
|
|
|
|
List<Reader.TAGINFO> strings = uhfLongerManager.tagInventoryRealTime();
|
|
|
|
Log.e("TAG", "驱动" + (uhfLongerManager == null));
|
|
|
|
Log.e("TAG", "驱动" + (uhfLongerManager == null));
|
|
|
|
if (strings == null || strings.isEmpty()) {
|
|
|
|
if (strings == null || strings.isEmpty()) {
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
mediaPlayer.start();
|
|
|
|
mediaPlayer.start();
|
|
|
|
sanRfid(strings);
|
|
|
|
sanRfid(strings);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private void initDialog() {
|
|
|
|
private void initDialog() {
|
|
|
|
dialog = new ProgressDialog(this);
|
|
|
|
dialog = new ProgressDialog(this);
|
|
|
|
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
|
|
|
|
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
|
|
|
@ -75,15 +80,20 @@ public abstract class BaseActivity extends AppCompatActivity {
|
|
|
|
dialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
|
|
|
|
dialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
|
|
|
|
dialog.setMessage("请求网络...");
|
|
|
|
dialog.setMessage("请求网络...");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private void initSan() {
|
|
|
|
private void initSan() {
|
|
|
|
uhfLongerManager = MyApplication.getUhfLongerManager();
|
|
|
|
uhfLongerManager = MyApplication.getUhfLongerManager();
|
|
|
|
// intentFilter.addAction("android.intent.action.FUN_KEY");
|
|
|
|
// intentFilter.addAction("android.intent.action.FUN_KEY");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
uhfLongerManager.asyncStartReading();
|
|
|
|
|
|
|
|
|
|
|
|
myReceiver = new MyReceiver();
|
|
|
|
myReceiver = new MyReceiver();
|
|
|
|
IntentFilter intentFilter = new IntentFilter();
|
|
|
|
IntentFilter intentFilter = new IntentFilter();
|
|
|
|
intentFilter.addAction("android.rfid.FUN_KEY");
|
|
|
|
intentFilter.addAction("android.rfid.FUN_KEY");
|
|
|
|
registerReceiver(myReceiver, intentFilter);
|
|
|
|
registerReceiver(myReceiver, intentFilter);
|
|
|
|
mediaPlayer = MediaPlayer.create(this, R.raw.msg);
|
|
|
|
mediaPlayer = MediaPlayer.create(this, R.raw.msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@Override
|
|
|
|
protected void onDestroy() {
|
|
|
|
protected void onDestroy() {
|
|
|
|
super.onDestroy();
|
|
|
|
super.onDestroy();
|
|
|
@ -91,6 +101,5 @@ public abstract class BaseActivity extends AppCompatActivity {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
protected abstract void sanRfid(List<Reader.TAGINFO> epcs);
|
|
|
|
protected abstract void sanRfid(List<String> epcs);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|