我尝试创建一个生成密码的应用,然后将其保存到应用中的单独页面供用户查看。为此,我有一个生成密码的按钮和另一个应该将该密码保存到另一个页面的按钮。我在一个类中使用setText来更新其他类/活动的TextView时遇到问题。
带按钮的课程。
public class Generate extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_gen);
final TextView passText = (TextView) findViewById(R.id.passText);
//final TextView savedText = (TextView) findViewById(R.id.savedText);
Button generatePassword = (Button) findViewById(R.id.generatePassword);
Button savePassword = (Button) findViewById(R.id.savePassword);
generatePassword.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
int passwordLength = 16;
String allowedChars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%&";
char[] allowedCharsArray = allowedChars.toCharArray();
char[] chars = new char[passwordLength];
Random random = new Random();
for (int i = 0; i < passwordLength; i++) {
chars[i] = allowedCharsArray[random.nextInt(allowedChars.length())];
}
passText.setText(chars, 0, passwordLength);
}
});
savePassword.setOnClickListener(new View.OnClickListener(){
public void onClick(View v) {
Save obj= new Save();
obj.newText.setText("Hello"); //testing to see if this works
/*Save obj = new Save();
TextView savedText = obj.getTextView();
savedText.setText("hello");*/
}
});
}
}
应该更改TextView的活动。
public class Save extends AppCompatActivity {
public static TextView newText;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_save);
newText = (TextView) findViewById(R.id.savedText);
}
}
目录下载。
java.lang.NullPointerException: Attempt to invoke virtual method 'void android.widget.TextView.setText(java.lang.CharSequence)' on a null object reference
at cs.rice.password_csp.Generate$2.onClick(Generate.java:52)
at android.view.View.performClick(View.java:5637)
at android.view.View$PerformClick.run(View.java:22429)
at android.os.Handler.handleCallback(Handler.java:751)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:154)
at android.app.ActivityThread.main(ActivityThread.java:6121)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:889)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:779)
我在这里得到的是它说该行引用了一个空对象。
obj.newText.setText("Hello");
我不明白为什么会这样,因为我很确定这里的一切看起来都正确,但我猜不是。
答案 0 :(得分:1)
尝试使用instance
将密码传递给Save
活动,然后在intent
上显示,而不是创建Save
活动的新TextView
。
通过Save
活动向Generate
活动发送密码:
savePassword.setOnClickListener(new View.OnClickListener(){
public void onClick(View v) {
Intent intent = new Intent(Generate.this, Save.class);
intent.putExtra("PASSWORD", passText.getText());
startActivity(intent);
}
});
在Save
活动中接收数据并在TextView
上显示
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_save);
newText = (TextView) findViewById(R.id.savedText);
String password = getIntent().getStringExtra("PASSWORD");
newText.setText(password);
}
答案 1 :(得分:-1)
使用扩展Application的全局类来存储数据。 这样定义 -
public class Global extends Application {
private String customerName;
private String customerPassword;
public void setCustomerPassword(String password){customerPassword = password;}
public String getCustomerPassword(){return customerPassword;}
}
接下来更改您的清单以包含以下行
<application
android:name=".Global"
在你的第一次活动之后 -
Global globalObject = (Global) getApplication
接下来是你的onclick听众 -
globalObject.setCustomerPassword(passwordField);
保存活动中的下一步 -
Global globalObject = (Global) getApplication();
String password = globalObject.getCustomerPassword();
然后将密码设置为textview。 那么简单:)
我不建议使用共享偏好,因为由于很多原因,这不是一个好习惯。
您也可以尝试将其存储到sqllite数据库中,然后从那里获取它,但上面提到的方法更简单,更漂亮。