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="horizontal">
     <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="400dp"
        android:text="" />
    <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:id="@+id/button_send"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="sendMessage"
        android:text="@string/button_send" 
        android:layout_gravity="bottom"/>

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }



  @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

  Button button = (Button)findViewById(R.id.button_send);

    };
4

4 に答える 4

4

これは確かに機能します

public class MainActivity extends Activity {

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
}

public void sendMessage(View v){

    EditText editMessage=(EditText)findViewById(R.id.edit_message);
    TextView textView = (TextView) findViewById(R.id.textView1);

    //get text from edittext and convert it to string
    String messageString=editMessage.getText().toString();

    //set string from edittext to textview
    textView.setText(messageString);

    //clear edittext after sending text to message
    editMessage.setText("");


}

}
于 2013-03-06T05:39:59.913 に答える
1

おそらくこれが必要です。

 EditText edt = (EditText)findViewById(R.id.edit_message);
 TextView txt= (TextView)findViewById(R.id.textview1);
 String value = edt.getText().toString();

button.setOnClickListener(new View.OnClickListener() {
            public void onClick(View view) {
                 txt.append(value+"\n");
                      edt.setText("");
            }
     });
于 2013-03-06T05:31:44.803 に答える
1
<TextView android:text="" android:background="@drawable/border"/>

上記の行をxmlに含め、フォルダborder.xmlres/drawableに作成して、次のコードを内部に記述しますborder.xml

<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
   <solid android:color="#dfdfdf" />
   <stroke android:width="1dip" android:color="#aa0000"/>
</shape>

これにより、textView

後の部分では、これをJavaで使用します

button.setOnClickListener(new OnClickListener() {
       void onClick() {
         textView.setText(editText.getText());
        }
    });

それがあなたにとって役に立ったことを願っています:)何か問題があれば知らせてください

于 2013-03-06T05:27:10.810 に答える
0

文字列から表示したい場合は、

 android:text="@strings/text"

edittextからテキストを取得し、テキストビューに追加する場合は、

  EditText edit = (EditText) findViewById(R.id.editText);
  TextView text = (TextView) findViewById(R.id.Text);
  String str=edit.getText().toString();
  text.setText(str);
于 2013-03-06T05:23:42.870 に答える