如何在java文件中获取XML字符串?

时间:2016-08-12 12:22:16

标签: java android xml

所以,现在我的XML文件中有一个文本元素要求用户输入,如何将这个用户输入到我的java文件中,以便我可以在那里使用它作为数字?这是我的XML到目前为止。

<?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:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <EditText android:id="@+id/uitgaven"
        android:layout_weight="1"
        android:layout_width="1dp"
        android:layout_height="wrap_content"
        android:hint="@string/uitgaven"
     />

    <EditText android:id="@+id/inkomsten"
        android:layout_weight="1"
        android:layout_width="1dp"
        android:layout_height="wrap_content"
        android:hint="@string/inkomsten"
        />
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/button_send"
        android:onClick="sendMessage"
        />
</LinearLayout>

我的java目前基本上是空的,因为我现在还不太了解它。

2 个答案:

答案 0 :(得分:0)

首先,您必须使用

获取视图

mEditText = (EditText) findViewById(R.id.uitgaven)

mEditText = (EditText) findViewById(R.id.inkomsten)

无论你需要哪个文本。然后你需要做的就是获取文本本身。你可以通过

获得
String myText = mEditText.getText().toString();

答案 1 :(得分:0)

首先使用ID

获取EditText视图
  EditText editText=(EditText)findViewById(R.id.uitgaven);
  EditText editText1=(EditText)findViewById(R.id.inkomsten);

接下来获取视图中指定的值

String value,value1 = null;
value=editText.getText().toString();
value1=editText1.getText().toString();