我已经构建了一个带宽监控应用程序,它使用以下内容成功将数据上传到parse.com:
testObject.put("dataOutput", String.valueOf(mStartTX));
但是,数据始终存储为零。原因是我发送的长/字符串的初始值为零(当应用程序首次启动时),但随着用户开始发送和接收数据,它会不断变化。能以某种方式实时解析这些数据吗?或者在数据发生变化时每隔几秒钟重新发送一次?
完整来源:
public class ParseStarterProjectActivity extends Activity {
TextView textSsid, textSpeed, textRssi;
public Handler mHandler = new Handler();
public long mStartRX = 0;
public long mStartTX = 0;
/** Called when the activity is first created. */
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.parser);
textSsid = (TextView) findViewById(R.id.Ssid);
textSpeed = (TextView) findViewById(R.id.Speed);
textRssi = (TextView) findViewById(R.id.Rssi);
Long.toString(mStartTX);
ParseAnalytics.trackAppOpened(getIntent());
ParseObject testObject = new ParseObject("TestObject");
testObject.put("dataOutput", String.valueOf(mStartTX));
testObject.saveInBackground();
mStartRX = TrafficStats.getTotalRxBytes();
mStartTX = TrafficStats.getTotalTxBytes();
if (mStartRX == TrafficStats.UNSUPPORTED || mStartTX == TrafficStats.UNSUPPORTED) AlertDialog.Builder alert = new AlertDialog.Builder(this);
alert.setTitle("Uh Oh!");
alert.setMessage("Your device does not support traffic stat monitoring.");
alert.show();
} else {
mHandler.postDelayed(mRunnable, 1000);
}
}
private final Runnable mRunnable = new Runnable() {
public void run() {
TextView RX = (TextView)findViewById(R.id.RX);
TextView TX = (TextView)findViewById(R.id.TX);
long rxBytes = TrafficStats.getTotalRxBytes()- mStartRX;
RX.setText(Long.toString(rxBytes));
long txBytes = TrafficStats.getTotalTxBytes()- mStartTX;
TX.setText(Long.toString(txBytes));
mHandler.postDelayed(mRunnable, 1000);
答案 0 :(得分:0)
您将要创建一个在您的应用运行时运行的IntentService(或者甚至可能在它关闭时运行)。使用AlarmService收集数据,以便在设置的迭代中唤醒以收集数据。 AlarmService旨在实现电池友好。
private final Runnable mRunnable = new Runnable() { // ... }
Runnable在Java中是个好主意;在Android中没有那么多。如果您只需要离开UI线程,请考虑AsyncTask()或类似 - 但如上所述,后台服务可能是更好的选择。我不知道您对Java或命名约定的熟悉程度如何,这可能只是一个简单的疏忽,但mRunnable
应该只是代码中的runnable
。前缀为“m”或“_”(下划线)的变量是与mHandler
,mStartTX
和mStartRX
类似的字段。
此外,独奏专线Long.toString(mStartTX);
什么都不做。