2つのアクティビティがあります。そのうちの1つはログインアクティビティです。ログインが成功すると、最初に2番目のアクティビティでアイコンを表示する必要があります。最初に2番目のアクティビティのレイアウトファイルでアイコンを非表示にしました。以下は私のコードです。
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.fyelogin);
etPassword = (EditText)findViewById(R.id.password);
btnLogin = (Button)findViewById(R.id.login_button);
btnCancel = (Button)findViewById(R.id.cancel_button);
lblResult = (TextView)findViewById(R.id.result);
final ImageView details = (ImageView)findViewById(R.id.red);
btnLogin.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
String password = etPassword.getText().toString();
if(password.equals("guest")){
lblResult.setText("password successful.");
// details.setVisibility(View.VISIBLE);
} else {
lblResult.setText("password doesn't match.");
}
finish();}});
私は打たれました、どうすれば2番目のアクティビティを呼び出して、ログインアクティビティからアイコンを表示できますか..どんな提案でもありがたいです