我正在尝试在 Android 应用程序中显示文本,但我对 Android 开发完全陌生。我非常了解 Java,但是,如果它是一个短信应用程序,我将如何在应用程序中间显示文本?我在底部有一个带有Send按钮的文本字段,但是在他们单击之后Send,我希望能够显示他们在中间输入的内容。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
android:orientation="horizontal">
<EditText android:id="@+id/edit_message"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:hint="@string/edit_message"
android:layout_gravity="bottom" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="sendMessage"
android:text="@string/button_send"
android:layout_gravity="bottom"/>
</LinearLayout>