用Android studio写一个登录界面,要求如下: 1、登录页面 (1)页面布局自定,要求友好、美观,用户名,密码处有提示(hint)P15 (2)点击登录按钮时候若账号密码为空,提示输入账号密码(toast);输入账号、密码无匹配,提示若无账号,请注册 (3)点击注册按钮,跳转至注册页面 (4)点击取消按钮,清空账号密码处数据,软件保持在启动初始状态 (5)如账号密码与注册数据一致,跳转到欢迎页面 2、注册页面 (1)输入用户名,用户名为自己姓名的小写全拼,密码为个人学号后六位,重复密码,若两次密码一致,将用户名密码存储,提示注册成功,并返回到登录页面 3、欢迎页面 (1)欢迎页面要求包含用户名的信息,如“张三(用户名) 欢迎你!” 包含列表视图,如:“该软件包含的主要功能如下:编辑、查看、修改、删除” 4、对话框功能 (1)通过某按钮实现弹出对话框(按钮位置不限),对话框包含确定和取消,确定按钮功能不限,取消按钮实现结束当前页面,返回上一层。 列表对话框,以调查问卷等形式(不限制内容)设置单选复选框,一组单选按钮,只能选中一项。
时间: 2024-03-14 12:48:03 浏览: 91
好的,以下是一个简单的Android Studio登录界面的示例代码,您可以参考以下代码进行实现:
1. LoginActivity.java
```
public class LoginActivity extends AppCompatActivity {
private EditText etUsername, etPassword;
private Button btnLogin, btnCancel, btnRegister;
@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);
btnLogin = findViewById(R.id.btn_login);
btnCancel = findViewById(R.id.btn_cancel);
btnRegister = findViewById(R.id.btn_register);
btnLogin.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String username = etUsername.getText().toString().trim();
String password = etPassword.getText().toString().trim();
if (TextUtils.isEmpty(username) || TextUtils.isEmpty(password)) {
Toast.makeText(LoginActivity.this, "请输入账号密码", Toast.LENGTH_SHORT).show();
} else if (!checkAccount(username, password)) {
Toast.makeText(LoginActivity.this, "账号密码不匹配,请注册", Toast.LENGTH_SHORT).show();
} else {
Intent intent = new Intent(LoginActivity.this, WelcomeActivity.class);
intent.putExtra("username", username);
startActivity(intent);
}
}
});
btnCancel.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
etUsername.setText("");
etPassword.setText("");
}
});
btnRegister.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(LoginActivity.this, RegisterActivity.class);
startActivityForResult(intent, 0);
}
});
}
private boolean checkAccount(String username, String password) {
SharedPreferences sp = getSharedPreferences("user_info", MODE_PRIVATE);
String savedPassword = sp.getString(username, "");
return savedPassword.equals(password);
}
@Override
protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == 0 && resultCode == RESULT_OK) {
etUsername.setText(data.getStringExtra("username"));
etPassword.setText(data.getStringExtra("password"));
}
}
}
```
2. activity_login.xml
```
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/iv_logo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop="50dp"
android:src="@mipmap/ic_launcher" />
<EditText
android:id="@+id/et_username"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/iv_logo"
android:layout_marginTop="50dp"
android:layout_marginLeft="50dp"
android:layout_marginRight="50dp"
android:hint="请输入用户名"
android:textSize="20sp" />
<EditText
android:id="@+id/et_password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/et_username"
android:layout_marginTop="20dp"
android:layout_marginLeft="50dp"
android:layout_marginRight="50dp"
android:hint="请输入密码"
android:textSize="20sp"
android:inputType="textPassword" />
<Button
android:id="@+id/btn_login"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/et_password"
android:layout_marginTop="50dp"
android:layout_marginLeft="50dp"
android:layout_marginRight="50dp"
android:text="登录"
android:textSize="20sp" />
<Button
android:id="@+id/btn_cancel"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/btn_login"
android:layout_marginTop="20dp"
android:layout_marginLeft="50dp"
android:layout_marginRight="50dp"
android:text="取消"
android:textSize="20sp" />
<Button
android:id="@+id/btn_register"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/btn_cancel"
android:layout_centerHorizontal="true"
android:layout_marginTop="20dp"
android:text="注册"
android:textSize="20sp" />
</RelativeLayout>
```
3. RegisterActivity.java
```
public class RegisterActivity extends AppCompatActivity {
private EditText etUsername, etPassword, etRepeatPassword;
private Button btnRegister;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_register);
etUsername = findViewById(R.id.et_username);
etPassword = findViewById(R.id.et_password);
etRepeatPassword = findViewById(R.id.et_repeat_password);
btnRegister = findViewById(R.id.btn_register);
btnRegister.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String username = etUsername.getText().toString().trim();
String password = etPassword.getText().toString().trim();
String repeatPassword = etRepeatPassword.getText().toString().trim();
if (TextUtils.isEmpty(username) || TextUtils.isEmpty(password) || TextUtils.isEmpty(repeatPassword)) {
Toast.makeText(RegisterActivity.this, "请输入用户名和密码", Toast.LENGTH_SHORT).show();
} else if (!password.equals(repeatPassword)) {
Toast.makeText(RegisterActivity.this, "两次输入的密码不一致", Toast.LENGTH_SHORT).show();
} else {
SharedPreferences sp = getSharedPreferences("user_info", MODE_PRIVATE);
sp.edit().putString(username, password).apply();
Intent intent = new Intent();
intent.putExtra("username", username);
intent.putExtra("password", password);
setResult(RESULT_OK, intent);
finish();
}
}
});
}
}
```
4. activity_register.xml
```
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<EditText
android:id="@+id/et_username"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="50dp"
android:layout_marginLeft="50dp"
android:layout_marginRight="50dp"
android:hint="请输入用户名"
android:textSize="20sp" />
<EditText
android:id="@+id/et_password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/et_username"
android:layout_marginTop="20dp"
android:layout_marginLeft="50dp"
android:layout_marginRight="50dp"
android:hint="请输入密码"
android:textSize="20sp"
android:inputType="textPassword" />
<EditText
android:id="@+id/et_repeat_password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/et_password"
android:layout_marginTop="20dp"
android:layout_marginLeft="50dp"
android:layout_marginRight="50dp"
android:hint="请再次输入密码"
android:textSize="20sp"
android:inputType="textPassword" />
<Button
android:id="@+id/btn_register"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/et_repeat_password"
android:layout_marginTop="50dp"
android:layout_marginLeft="50dp"
android:layout_marginRight="50dp"
android:text="注册"
android:textSize="20sp" />
</RelativeLayout>
```
5. WelcomeActivity.java
```
public class WelcomeActivity extends AppCompatActivity {
private TextView tvWelcome;
private ListView lvFunction;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_welcome);
tvWelcome = findViewById(R.id.tv_welcome);
lvFunction = findViewById(R.id.lv_function);
String username = getIntent().getStringExtra("username");
tvWelcome.setText(username + " 欢迎你!");
String[] functions = new String[]{"编辑", "查看", "修改", "删除"};
ArrayAdapter<String> adapter = new ArrayAdapter<>(this, android.R.layout.simple_list_item_1, functions);
lvFunction.setAdapter(adapter);
lvFunction.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
showDialog();
}
});
}
private void showDialog() {
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle("选择");
builder.setSingleChoiceItems(new String[]{"选项1", "选项2", "选项3"}, 0, null);
builder.setPositiveButton("确定", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
});
builder.setNegativeButton("取消", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
});
builder.create().show();
}
}
```
6. activity_welcome.xml
```
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/tv_welcome"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="50dp"
android:layout_centerHorizontal="true"
android:textSize="20sp" />
<ListView
android:id="@+id/lv_function"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/tv_welcome"
android:layout_marginTop="50dp" />
</RelativeLayout>
```
希望这个示例代码对您有所帮助。
阅读全文