android登陆跳转页面
时间: 2023-10-18 12:04:48 浏览: 114
在 Android 中实现登录并跳转页面的步骤如下:
1. 创建登录界面的布局。可以使用 EditText 组件获取用户输入的用户名和密码,使用 Button 组件实现登录按钮。
2. 在 LoginActivity 中处理登录逻辑。获取用户输入的用户名和密码,验证用户信息是否正确。如果验证通过,使用 Intent 跳转到目标页面。
3. 创建目标页面的布局。可以使用 TextView 显示欢迎信息或其他内容。
4. 在目标页面的对应 Activity 中处理页面逻辑。
下面是一个简单的示例代码:
LoginActivity.java:
```
public class LoginActivity extends AppCompatActivity {
private EditText etUsername;
private EditText etPassword;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_login);
etUsername = findViewById(R.id.et_username);
etPassword = findViewById(R.id.et_password);
Button btnLogin = findViewById(R.id.btn_login);
btnLogin.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
// 获取用户输入的用户名和密码
String username = etUsername.getText().toString();
String password = etPassword.getText().toString();
// 验证用户信息是否正确
if (username.equals("admin") && password.equals("123456")) {
// 登录成功,跳转到目标页面
Intent intent = new Intent(LoginActivity.this, TargetActivity.class);
startActivity(intent);
} else {
// 登录失败,提示用户
Toast.makeText(LoginActivity.this, "用户名或密码错误", Toast.LENGTH_SHORT).show();
}
}
});
}
}
```
activity_login.xml:
```
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical">
<EditText
android:id="@+id/et_username"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="用户名" />
<EditText
android:id="@+id/et_password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="密码"
android:inputType="textPassword" />
<Button
android:id="@+id/btn_login"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="登录" />
</LinearLayout>
```
TargetActivity.java:
```
public class TargetActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_target);
TextView tvWelcome = findViewById(R.id.tv_welcome);
tvWelcome.setText("欢迎来到目标页面!");
}
}
```
activity_target.xml:
```
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical">
<TextView
android:id="@+id/tv_welcome"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
```
阅读全文