我是移动开发的新手,我使用http://motech.applicationcraft.com/来获取应用程序。我读到了App Data Storage,并想用它来保存一些数据。
我做过类似下面的事情。
3个文本框,存储在d / b值为TRUE。
现在我想点击“保存”按钮,这3个详细信息将被保存。
我猜我需要点击“保存”按钮编写一些Javascript,不确定如何/什么?
答案 0 :(得分:0)
使用SharedPreference在App中存储数据。
像..
public static final String PREFS_NAME = "MyPrefsFile";
SharedPreferences settings = getSharedPreferences(PREFS_NAME, Context.MODE_PRIVATE);
SharedPreferences.Editor editor = settings.edit();
editor.putString("name" valueOfName);
editor.putString("name" valueOfUserId);
editor.putString("name" valueOfPassword);
editor.commit();