我如何通过他们指向的登录信息引用我的应用中的用户? 我尝试过类似的东西,但它不起作用:
HTAutoCompleteTextField
或:
let rec func list = match list with
|(* base case here *)
|head1::head2::tail -> func head1::tail;; (* error here *)
答案 0 :(得分:0)
我假设用户输入了用户名,以便从其他活动登录您的应用。用户登录后,您可以通过以下两种方式将用户名设置到个人资料/主页视图中
第一种是通过网络呼叫从服务器获取用户名,然后将其设置为textview。
第二种方法是将登录视图中的用户名信息传递到您的主页/个人资料视图中。
在您的SigninActivity中,在调用HomeActivity活动时,请执行此操作
Intent intent = new Intent(SignInActivity.this, HomeActivity.class);
intent.putExtra("username", the username that user entered);
startActivity(intent);
然后在您的HomeActivity中,您可以获取/设置用户名
// get the username
final String userName = getIntent().getStringExtra("username");
// set the username
yourTextView.setText(username);