0

我正在尝试在 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>
4

3 回答 3

0

添加一个新的TextView,XML如下:

<TextView
    android:id="@+id/new_text_view"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="I am some new text!" />

这只会创建一个新的 TextView 元素,您需要向 XML 添加新参数以指定其在屏幕上的位置,这一切都取决于您使用的布局类型。

如果您要将此元素添加到您的Button

android:id="@+id/button"

您可以使用以下代码在按下按钮时编辑 Activity 中的文本:

Button button = (Button)findViewById(R.id.button);
button.setOnClickListener(newView.OnClickListener(){
    public void onClick(){
        TextView newTextView = (TextView)findViewById(R.id.new_text_view);
        EditText editMessage = (EditText)findViewById(R.id.edit_message);
        newTextView.setText(editMessage.getText().toString());
    }
});
于 2013-03-06T01:54:49.550 回答
0

将您的 xml 编辑为此:

<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="vertical">

<TextView ndroid:id="@+id/text_message"
    android:layout_weight="1"
    android:layout_width="match_parent"
     android:layout_height="wrap_content" />
<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>

并在代码中编写以下内容:

 button.setOnClickListener(new View.OnClickListener() 
 {
    public void onClick(View v) 
    {
            edit_message= (TextView) findViewById(R.id.edit_message);
            String text = edit_message.getText().toString();
            text_message= (TextView) findViewById(R.id.text_message);
            text_message.setText(text );
    }
 }
于 2013-03-06T01:56:35.013 回答
0

这是您想要的布局:

<?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="vertical">

    <TextView
        android:id="@+id/textView1"
        android:layout_width="match_parent"
        android:layout_height="400dp"
        android:text="TextView" />
    <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="wrap_content"
        android:orientation="horizontal">

        <EditText
            android:id="@+id/edit_message"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:ems="10"
            android:hint="@string/edit_message" >

            <requestFocus />
        </EditText>

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/button_send" />
    </LinearLayout>
</LinearLayout>

您不一定需要在 xml 中设置 onClick 事件。使用其他答案作为如何添加 onClickListener 的示例

于 2013-03-06T02:06:45.483 回答