- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想我可以在登录后绕过登录 Activity ,但如何检索用户名并将其传递给下一个 Activity 。我得到用户名的值为 NULL
这是登录 Activity
public class LoginActivity extends AppCompatActivity {
/*
* Database helper field
*/
private DatabaseHelper databaseHelper;
/*
Edittext username and password
*/
private EditText uName, pwd;
/*
Button login and signup
*/
private Button loginButton, signupButton;
private String username, password;
/**
* Create activity when register button and log in button clicked
* @param savedInstanceState saved instance state
*/
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_login);
Toolbar toolbar = (Toolbar)findViewById(R.id.login_toolbar);
toolbar.setTitle("LOGIN");
databaseHelper = new DatabaseHelper(this);
uName = (EditText)findViewById(R.id.uNameToLogin_editText);
pwd = (EditText)findViewById(R.id.pwdToLogin_editText);
SharedPreferences sharedPreferences = getSharedPreferences
(getString(R.string.SHARED_PREFS), MODE_PRIVATE);
boolean isLoggedIn = sharedPreferences.getBoolean(getString(R.string.LOGGEDIN), false);
if (isLoggedIn){
Intent newIntent = new Intent(LoginActivity.this, FinderActivity.class);
newIntent.putExtra("Username", username);
startActivity(newIntent);
finish();
}
/*
* Sign up button clicked takes user to registration form
*/
signupButton = (Button)findViewById(R.id.signupButton);
signupButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(LoginActivity.this, RegisterActivity.class);
startActivity(intent);
}
});
/*
*Log in activity
*/
loginButton = (Button)findViewById(R.id.loginButton);
loginButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
username = uName.getText().toString();
password = pwd.getText().toString();
//log in successfull using correct username and password
String pass = databaseHelper.searchPassword(username);
if (pass.equals(password)){
SharedPreferences sharedPreferences = getSharedPreferences
(getString(R.string.SHARED_PREFS), MODE_PRIVATE);
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putBoolean(getString(R.string.LOGGEDIN), true);
editor.commit();
Toast.makeText(LoginActivity.this, "Welcome! " + username,
Toast.LENGTH_LONG).show();
//change to new search intent
Intent newIntent = new Intent(LoginActivity.this, FinderActivity.class);
newIntent.putExtra("Username", username);
startActivity(newIntent);
finish();
} else {
//error shows if inccorrect password or username
Toast.makeText(LoginActivity.this, "Username or Password Incorrect!, Try Again",
Toast.LENGTH_LONG).show();
}
}
});
}
}
这是我的 NextActivity,它包含菜单栏中的注销操作
public class FinderActivity extends AppCompatActivity {
private static final String TAG = "FinderActivity";
private String address = "";
public List<LocationInfo> locationList;
public ListView mListView;
public ArrayAdapter<LocationInfo> locationAdapter;
private int numberOfLocation;
public LocationAddress locationAddress;
public String api_url, uName;
public double lat, lng;
SharedPreferences mSharePreferences;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_finder);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
Intent intent = getIntent();
uName = intent.getStringExtra("Username");
String welcomeString = "Welcome, " + uName;
getSupportActionBar().setTitle(welcomeString);
Log.i(TAG, "On create called");
View b = findViewById(R.id.customButton);
b.setVisibility(View.GONE);
/*
retrieve search button actions
*/
Button searchButton = (Button) findViewById(R.id.search_button);
searchButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
//pass address to location class
EditText search = (EditText) findViewById(R.id.search_EditText);
address = search.getText().toString();
LocationAddress.setAddress(address);
if (locationList != null) {
locationList.clear();
}
if (address.equals("")) {
Toast.makeText(FinderActivity.this, "PLease enter your address!",
Toast.LENGTH_LONG).show();
} else {
/*
* manging connection from the application to networking service
* before attempting to fetch url, make sure there is a network connection
*/
ConnectivityManager connectivityManager = (ConnectivityManager)
getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo networtInfo = connectivityManager.getActiveNetworkInfo();
if (networtInfo != null && networtInfo.isConnected()) {
GetAddressTask task = new GetAddressTask();
task.execute();
View b = findViewById(R.id.customButton);
b.setVisibility(View.GONE);
Log.i(TAG, "connected");
} else {
Log.i(TAG, "not connected");
}
/*
Retrieve data to listview
*/
showListView();
/*
itemClick listener for each item in the list view
*/
mListView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
Intent intent = new Intent(FinderActivity.this, ParkingLocation.class);
api_url = locationList.get(position).getUrl_api();
intent.putExtra("key_api_url", api_url);
intent.putExtra("username", uName);
startActivity(intent);
}
});
}
}
});
/*
Custom search button actions if and only if search button gives null results
*/
Button customSearch = (Button) findViewById(R.id.customButton);
customSearch.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (address.equals("")) {
Toast.makeText(FinderActivity.this, "PLease enter your address!",
Toast.LENGTH_LONG).show();
} else if (LocationAddress.getNumOfLocations() > 0) {
Toast.makeText(FinderActivity.this, "This action is only available if no parking locations found!!",
Toast.LENGTH_LONG).show();
} else { //open custom search activity
Intent newIntent = new Intent(FinderActivity.this, CustomSearchActivity.class);
Bundle b = new Bundle();
b.putDouble("key_lat", lat);
b.putDouble("key_lng", lng);
b.putString("username", uName);
newIntent.putExtras(b);
startActivity(newIntent);
}
}
});
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
switch (id) {
//log out action
case R.id.action_logout:
mSharePreferences = getSharedPreferences(getString
(R.string.SHARED_PREFS), MODE_PRIVATE);
SharedPreferences.Editor editor = mSharePreferences.edit();
editor.putBoolean(getString(R.string.LOGGEDIN), false);
editor.commit();
Intent backIntent = new Intent(FinderActivity.this, LoginActivity.class);
startActivity(backIntent);
return true;
//show my saved places view
case R.id.action_show:
Intent intent = new Intent(FinderActivity.this, MyDestination.class);
intent.putExtra("username", uName);
startActivity(intent);
return true;
}
//show list of destination once this button clicked
return super.onOptionsItemSelected(item);
}
最佳答案
如果你想通过 Intent 传递数据,你应该在 FinderActivity.java 的 onCreate 上设置它
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.layout);
if (getIntent() != null) {
final Bundle extras = getIntent().getExtras();
if (extras != null) {
userName = extras.getString("Username");
}
}
}
如果你想在 SharedPreferences 上保存,你必须在 LoginActivity 上保存并在 FinderActivity.java 上保存解释如何的链接 -> How to use SharedPreferences in Android to store, fetch and edit values
关于android - 使用 SharedPreferences 从 Edittext 中检索用户名以进行下一个 Activity ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34072492/
我想做的是从 table1 中获取 usernames 和 picURLs WHERE usernames = all the usernames from this query (从表 2 中选择用
我使用字符串“username”作为表的主键, 但是,当保存并获取具有用户名ID的列时,我希望忽略这种情况,以使新用户无法尝试模拟其他用户。 ,例如注册新用户时 用户名=达克森 用户名= DaXoN
在 ReportManager 中,我有很多用户提示这个错误。当我筛选 RS 日志时,我多次看到不同用户的以下错误: session!ReportServer_0-2!1e40!04/20/2011-
我是 Node js新手,我正在尝试将MySql与 Node 连接的示例。当我运行代码时,我得到 Error while performing Query.Error: ER_ACCESS_DENIE
收集整理了15个常用的javaScript正则表达式,其中包括用户名、密码强度、整数、数字、电子邮件地址(Email)、手机号码、身份证号、URL地址、 IPv4地址、 十六进制颜色、 日期、 QQ
我正在做一个需要以下内容的项目。 服务器端的 WCF 服务 (.NET 3.5) 客户端的 WPF 客户端 (.NET 3.0) 我有一个现有的应用程序,我必须使用(在服务器端)的身份验证和授权。我还
用户名,密码和电子邮件的标准最小和最大长度是多少? 最佳答案 我对此问题有疑问,因为它预先假设应该有一个标准,并且所有服务的值都应该相同。 我认为为这些字段中的任何一个(例如密码字段)加上最大长度是没
我看到in the standard我可以拥有 autocomplete要么等于 username或 email在输入字段上。 就我而言,用户名实际上是用户的电子邮件。 什么是最好的autocompl
我正在尝试编写一些网站代码并创建用户名和密码。我不知道这是否完全合乎逻辑,或者即使代码已修复,它是否仍能工作,但我是一个初学者,我正在从零开始工作。这是我所拥有的: alert("Welcome.
我想使用ncat编写一个简单的bash脚本,以打开与ISP及其端口的连接。 第一个命令是: nc address port 完成此操作后,首先提示我提供一个用户名。我必须按ENTER键,然后提示我提供
我收到此错误是因为我创建了一个自定义用户模型,并且在完成所有设置后(将其设置为django / contrib / auth / models.py),我将电子邮件设置为USERNAME_FIELD,
我有 3 台 Windows 7 Professional 机器。两台被设置为安装了 Git 的开发机器(一台台式机和一台笔记本电脑)。第三个是设置为安装了 Git 的文件服务器,并且它还作为 ssh
def login(): UserName = input("Please enter your username: ") passw = input("Please enter yo
我正在 Kivy 中创建一个应用程序。我正在创建一个登录页面,允许用户输入密码和用户名,以验证他们以前是否使用过我的应用程序。我将用户名和密码存储在名为“users”的 MySQL 数据库中,该表称为
什么是 Mysql 查询 REGEXP 来调用它? @text @user_name @4ll_r1ght @last2 @_last1 @and1more_ 最佳答案 SELECT * FROM u
我在寻找用户名和电子邮件垃圾邮件列表。当用户尝试注册时,我想检查他们输入的用户名或电子邮件是否在用户名/电子邮件垃圾邮件列表中,如果是,则将帐户标记为可疑垃圾邮件并手动验证成员资格。 它背后的后端不是
你好, 我被一个小问题困住了, 我需要允许 muplite 用户能够登录 我的 php 代码与一个成员一起工作,我怎样才能让多个用户可以登录, 如果有更好的使用 MySql 的方法请告诉我 $
是否有一组在编译时创建的定义,我可以使用它们来填充 printk 语句,其中包含有关在哪里以及谁最后构建内核驱动程序的信息?我知道有预定义的 C 宏,我希望在那里找到一些在编译开始时动态设置的东西,但
我正在为我正在开发的网站创建登录脚本。目前,我已将用户名和密码硬编码到脚本中。即 $usersAndPasses = array( 'username1' => 'password1',
我想像这样从成员列表页面收集用户名: http://www.marksdailyapple.com/forum/memberslist/ 我想从所有页面中获取每个用户名, 我想在 linux 中用 b
我是一名优秀的程序员,十分优秀!