使用android studio写一个备忘录,包括xml和java文件
时间: 2023-08-02 22:13:32 浏览: 190
用android studio写的一个备忘录
好的,我可以为您提供一个简单的备忘录应用程序的代码示例。以下是XML和Java文件的代码:
XML文件:
```
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<EditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginTop="16dp"
android:layout_marginEnd="16dp"
android:hint="Enter your note here"
android:inputType="textMultiLine"
android:maxLength="500"
android:maxLines="10"
android:minLines="1"
android:textSize="18sp" />
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/editText"
android:layout_alignParentEnd="true"
android:layout_marginTop="16dp"
android:layout_marginEnd="16dp"
android:text="Save" />
<ListView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/button"
android:layout_marginTop="16dp" />
</RelativeLayout>
```
Java文件:
```
import android.os.Bundle;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ListView;
import android.widget.Toast;
import androidx.appcompat.app.AppCompatActivity;
import java.util.ArrayList;
public class MainActivity extends AppCompatActivity {
private EditText editText;
private Button button;
private ListView listView;
private ArrayList<String> notesList;
private ArrayAdapter<String> adapter;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
editText = findViewById(R.id.editText);
button = findViewById(R.id.button);
listView = findViewById(R.id.listView);
notesList = new ArrayList<>();
adapter = new ArrayAdapter<>(this, android.R.layout.simple_list_item_1, notesList);
listView.setAdapter(adapter);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
String note = editText.getText().toString();
if (note.isEmpty()) {
Toast.makeText(MainActivity.this, "Please enter a note", Toast.LENGTH_SHORT).show();
} else {
notesList.add(note);
adapter.notifyDataSetChanged();
editText.setText("");
Toast.makeText(MainActivity.this, "Note added successfully", Toast.LENGTH_SHORT).show();
}
}
});
}
}
```
这是一个简单的备忘录应用程序,用户可以在EditText中输入笔记并点击“保存”按钮保存。保存的笔记将显示在ListView中。笔记最多可以包含500个字符。
阅读全文