如下图所示。我希望我的背景活动(来自蓝牙的流数据)在A类中的位置总是在我将屏幕更改为B类时运行.UI仅在屏幕处于活动状态时更新,但使用始终运行的相同背景活动。
我知道只允许在Android上运行一个活动活动。这是我尝试使用来自A类textview UI更新的共享首选项传递数据的方式,并尝试在B类中获取它。但是,当我将屏幕更改为B类时,后台活动停止工作。因此,我之前设置的共享首选项仅传递了最后一个数据。
这是代码: 获取数据,A类
h = new Handler() {
public void handleMessage(android.os.Message msg) {
switch (msg.what) {
case RECIEVE_MESSAGE: // if receive massage
byte[] readBuf = (byte[]) msg.obj;
String strIncom = new String(readBuf, 0, msg.arg1); // create string from bytes array
sb.append(strIncom); // append string
int endOfLineIndex = sb.indexOf("\r\n"); // determine the end-of-line
if (endOfLineIndex > 0) { // if end-of-line,
String sbprint = sb.substring(0, endOfLineIndex); // extract string
sb.delete(0, sb.length()); // and clear
txtArduino.setText("Data from Arduino: " + sbprint); // update TextView
SharedPreferences logPreferences = PreferenceManager.getDefaultSharedPreferences(MainActivity.this);
SharedPreferences.Editor editor = logPreferences.edit();
String textLog = txtArduino.getText().toString();
editor.putString("log", textLog);
editor.commit();
}
//Log.d(TAG, "...String:"+ sb.toString() + "Byte:" + msg.arg1 + "...");
break;
}
};
};
接收数据类B
package com.oding.skripsibluetooth3;
import android.app.Activity;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.preference.PreferenceManager;
import android.widget.TextView;
public class Datalog extends Activity{
TextView tvDatalog;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_datalog);
tvDatalog = (TextView) findViewById(R.id.tvDatalog);
SharedPreferences logPreferences = PreferenceManager.getDefaultSharedPreferences(this);
String text = logPreferences.getString("log", "null");
tvDatalog.setText(text+"\r\n");
}
}
我很欣赏任何想法, 我发现有人已经遇到similar situation。我尝试将静态放在变量sbprint上,就像所说的解决方案一样,并且有红色警告说“变量sbprint的非法修饰符;只允许最终版本” 对于我所遇到的具体问题,哪一种更简单?共享偏好?静态变量?还是什么?我该如何解决这个问题? 谢谢