0

我是 Android 开发和 Java 的新手。我在将 EditText 的值存储到变量中并随后在控制台中打印出来时遇到问题。我已经阅读了有关 getText() 的内容,但我不太明白它是如何工作的。这是我的脚本:

<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"
android:background="@drawable/simplenote_mainpage_background_200"
android:paddingBottom="0px"
android:paddingLeft="0px"
android:paddingRight="0px"
android:paddingTop="0px"
tools:context=".MainActivity" >

<RelativeLayout
    android:id="@+id/relativeLayout1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >
</RelativeLayout>

<Button
    android:id="@+id/button1"
    style="?android:attr/buttonStyleSmall"
    android:layout_width="wrap_content"
    android:layout_height="41dp"
    android:layout_alignParentBottom="true"
    android:layout_alignParentRight="true"
    android:layout_marginBottom="2dp"
    android:layout_marginRight="1dp"
    android:text="Save"
    android:textColor="#FFFFFF"
    android:textSize="20sp"
    android:typeface="sans" />

<EditText
    android:id="@+id/title"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_below="@+id/relativeLayout1"
    android:layout_marginLeft="16dp"
    android:layout_marginTop="10dp"
    android:textStyle="bold"
    android:hint="Title.."
    android:ems="10" />

<EditText
    android:id="@+id/note"
    android:layout_width="285dp"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_below="@+id/title"
    android:layout_marginLeft="16dp"
    android:layout_marginRight="16dp"
    android:layout_marginTop="15dp"
    android:hint="Note.."
    android:ems="10" >

    <requestFocus />
</EditText>



</RelativeLayout>

.

    public class notescreen extends Activity {

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.notescreen);

    EditText text = (EditText)findViewById(R.id.title);
    String value = text.getText().toString();



   // TODO Auto-generated method stub
}

}

我已经尝试了你建议的一些事情,但我遇到了很多问题:我想上传截图,但我没有 10 名声望。这是编辑后的代码:

package com.example.simplenote;

import android.app.Activity;
import android.os.Bundle;
import android.widget.EditText;
import android.util.Log;
import android.widget.Button;
import android.widget.TextView;

public class notescreen extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.notescreen);

    Button b1 = (Button)findViewById(R.id.button1);
    TextView tv = (TextView)findViewById(R.id.tv);
    EditText title = (EditText)findViewById(R.id.title);

     b1.setOnClickListener(new View.OnClickListener() {

                public void onClick(View v) {

             String value = title.getText().toString();

            tv =settext(value);

                }
            });
     final String TAG = "MyClass";
             Log.d(TAG, value);
    //EditText text = (EditText)findViewById(R.id.title);
    //String value = text.getText().toString();



   // TODO Auto-generated method stub
}


  }
4

3 回答 3

0

Try this:

//Add your packagename here please

import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;

public class notescreen extends Activity {

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {

        // Here is where you call the super on this method.
        // Mostly always comes as first line of any onCreate.
        super.onCreate(savedInstanceState);

        // After you have your layout set, you can retrieve your references
        setContentView(R.layout.notescreen);

        // You have just recovered your view class
        final EditText text = (EditText) findViewById(R.id.title);

        // You have just recovered the text of that view class (text)
        // final String value = text.getText().toString();

        // The log works as a printer on the console
        // Log.d("notescreen", "This is the text: " + value);

        // But hey... there is no text right "onCreate", right?
        // Soo...

        // Retrieve a button (you will need to create it on XML first)
        final Button clickForTextBt = (Button) findViewById(R.id.clickfortextbt);

        // Make that button print your message
        clickForTextBt.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                Log.d("notescreen", "This is the text: " + text.getText());
            }
        });
    }
}
于 2013-10-04T13:30:30.797 回答
0

从一开始,您就不知道哪个是存储值的变量。

EditText text = (EditText)findViewById(R.id.title);

上面的行,即存储对您的EditText. 这允许您在该对象上调用与 EditText 相关的函数,即getText()setText(). 您还可以调用其他函数,但这两个是您要使用的主要函数。

getText从文本框中检索值,例如,如果您在文本框中键入“hello”,那么getText()将返回字符串“hello”。getText()将始终返回一个字符串,即使输入了一个数字。

setText设置文本框中显示的内容。例如,如果您在text.setText("hello");执行此行时运行 s,它将在编辑文本中显示“hello”。

String value = text.getText().toString();

上面的行是您存储编辑文本的实际值的地方。因此,使用上面的示例,您在编辑文本中键入“hello”,当上面的行被调用时,变量value现在将等于"hello"

要将这个变量输出到控制台,有一个名为Log. 此类具有输出到控制台的各种功能(在 android 中也称为 logcat)。

各种类型是

Log.d = 调试类型消息 Log.e = 指示错误的消息(红色) Log.v = 详细消息(绿色) Log.w = 警告消息(黄色)

我想还有几个其他的,但我不记得了。

要输出具有 text.getText() 函数返回值的变量,请将此变量传递给上述 Log 函数之一。

上面的每个日志函数都有两个参数,一个tag参数和一个value参数。

tag 参数只是一个名称,因此您可以过滤消息以仅显示该名称,通常为标签创建一个静态的最终字符串,即类名,例如在下面的行中。

private static final string TAG = "MyClass"

然后输出文本变量,您将使用以下行

Log.d(TAG, value);

如果您想让消息更清楚地了解该值所代表的含义,您可以在开头连接一个字符串,以便可能变为

Log.d(TAG, "The value of my edit text is: " + value);

使用上面的示例,如果您在编辑文本中键入 hello,则 log cat 将显示以下内容之一,具体取决于您在上面使用的行

MyClass       hello
MyClass       The value of my edit text is: hello

希望这可以帮助

于 2013-10-04T13:07:46.057 回答
0
public class notescreen extends Activity {


//Its a good practice to declare all the things that you want in activity
String value;
Button b1;
TextView tv;
EditText title;

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.notescreen);

// here you have to initialize by its id
b1 = (Button)findViewById(R.id.button1);
tv = (TextView)findViewById(R.id.tv);
title = (EditText)findViewById(R.id.title);

 b1.setOnClickListener(new View.OnClickListener() {

            public void onClick(View v) {

         value = title.getText().toString();

        tv.settext(value);

            }
        });


  }

}

在您的 xml 文件中创建一个 TextView

<TextView
android:id="@+id/tv"
android:layout_width="285dp"
android:layout_height="wrap_content"

 >
于 2013-10-04T12:45:49.037 回答