Android studio代码写一个登录页面加记事本,文件名为book1,as的版本是2022.2.1
时间: 2024-02-22 19:55:15 浏览: 54
好的,下面是一个简单的示例代码:
1. 在 Android Studio 中创建一个新的项目,选择 Empty Activity 模板。
2. 在 activity_main.xml 文件中添加以下代码:
```
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="16dp">
<EditText
android:id="@+id/editTextUsername"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="用户名" />
<EditText
android:id="@+id/editTextPassword"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/editTextUsername"
android:hint="密码"
android:inputType="textPassword" />
<Button
android:id="@+id/buttonLogin"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/editTextPassword"
android:text="登录" />
<TextView
android:id="@+id/textViewMessage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/buttonLogin"
android:text="" />
</RelativeLayout>
```
3. 在 MainActivity.java 文件中添加以下代码:
```
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
public class MainActivity extends AppCompatActivity {
private EditText editTextUsername, editTextPassword;
private Button buttonLogin;
private TextView textViewMessage;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
editTextUsername = findViewById(R.id.editTextUsername);
editTextPassword = findViewById(R.id.editTextPassword);
buttonLogin = findViewById(R.id.buttonLogin);
textViewMessage = findViewById(R.id.textViewMessage);
buttonLogin.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String username = editTextUsername.getText().toString();
String password = editTextPassword.getText().toString();
if (username.equals("admin") && password.equals("admin")) {
textViewMessage.setText("登录成功!");
} else {
textViewMessage.setText("用户名或密码错误!");
}
}
});
// 保存数据到文件
saveToFile("book1", "Hello World!");
// 从文件读取数据
String data = readFromFile("book1");
textViewMessage.setText(data);
}
private void saveToFile(String fileName, String content) {
FileOutputStream fos = null;
try {
fos = openFileOutput(fileName, MODE_PRIVATE);
fos.write(content.getBytes());
fos.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
private String readFromFile(String fileName) {
FileInputStream fis = null;
try {
fis = openFileInput(fileName);
byte[] buffer = new byte[fis.available()];
fis.read(buffer);
fis.close();
return new String(buffer);
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
}
```
4. 运行项目,输入用户名和密码,点击登录按钮,即可看到登录结果。同时,程序会自动将数据保存到文件 book1 中,并从文件中读取数据并显示在界面上。
注意:上述代码只是示例代码,需要根据实际需求进行修改和完善。
阅读全文