Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在用 :
public class GlobalVariables extends Application{ ... }
创建一些全局变量。有没有一种简单的方法可以将它们全部保存而无需一一命名。一种连载!目标是保存这些变量,这些变量是应用程序暂停或停止时的状态,并在恢复时重新加载它们。
谢谢。
您不必担心,您的应用程序“GlobalVariables”类不会破坏您在暂停和停止时保存在它们上的强引用。
如果您的应用程序完全从内存中删除,它们将被破坏......但是当用户打开您的应用程序时,系统将再次对其调用 onCreate() 。