我创建了一个应用程序,它接收用户名和其他事务的详细信息,然后将它们填充到数据库中。有时,应用程序通过将数据库中的相同详细信息作为两个事务填充两次而表现出奇怪的行为。即使读取了新值但未存储在静态变量中。
因此,我需要帮助在每个活动结束时刷新所有静态变量的值,以避免在新事务中覆盖以前的值。
编辑 :
public class One
{
static String var;
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
var="blah";
}
}
public class Two
{
static String variable = One.var;
// This is where i am accessing the value of the variables from previous activities.
//CODE
}