作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您好,我想知道如何从 android 调用 session
以下是我的登录页面的代码,其中设置了 session
Runnable runnable = new Runnable() {
public void run() {
Users user = mapper.load(Users.class,username);
// System.out.println(user.getPassword());
// System.out.println(username);
try {
if (user != null && user.getPassword().equals(password)) {
//System.out.println("Correct");
SharedPreferences pref = getApplicationContext().getSharedPreferences("MyPref", MODE_PRIVATE);
SharedPreferences.Editor editor = pref.edit();
editor.putString("userSession", username);
editor.commit();
runOnUiThread(new Runnable() {
@Override
public void run() {
//setContentView(R.layout.activity_account);
startActivity(new Intent(startActivity.this, accountActivity.class));
}
});
登录后进入账户页面,账户页面代码如下
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_account);
/* SharedPreferences pref = getApplicationContext().getSharedPreferences("MyPref", MODE_PRIVATE);
SharedPreferences.Editor editor = pref.edit();
String User=pref.getString("userSession", "Not Exist");
System.out.println("Hello");
System.out.println(User);
*/
test = (Button) findViewById(R.id.streamingButton);
testId = (TextView)findViewById(R.id.welcomeTxt);
}
现在我想知道如何将 TextView 设置为登录用户的用户名我已经注释了共享首选项代码,因为它也不会打印用户 ID。我不明白为什么注释的代码不起作用
最佳答案
您不需要使用 SharedPreferences,只需将数据放入 Intent 中即可。然后你可以从accountActivity的onCreate中获取数据。看这个:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_account);
Intent intent = getIntent();
String userName = intent.getStringExtra("userName");
test = (Button) findViewById(R.id.streamingButton);
testId = (TextView)findViewById(R.id.welcomeTxt);
}
关于java - 如何将 textview 设置为共享首选项值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39144616/
我有一个像这样的 ListView: 时间定义如下:public DateTime time = DateTime.Now; 如何用两种不同的方法更新时间?我能
我有一个名为 dropdownlist.ascx 的通用控件,它根据 XML 文档和我传递给该控件的属性填充它的 ListItems。 此控件在同一 aspx 页面上多次使用。我在 aspx 页面的
这个问题已经有答案了: Android. Get string resource for a non-activity class [duplicate] (1 个回答) 已关闭 3 年前。 大家好,
我是一名优秀的程序员,十分优秀!