これでXMLファイルに、ユーザー入力を求めるテキスト要素があります。このユーザー入力をJavaファイルに入力すると、数値としてそこに使用できますか?これまでの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は基本的には空ですが、それについては分かりません。
で指定された値を取得し、チュートリアルを読んでくださいIDを使用してのEditTextビューを取得することを得ることができます。特に初心者の方には、学習段階を楽にするために多くのことが行われます。 – ppeterka
'EditText et1 =(EditText)findViewById(R.id.uirgaven); et1.getText()。toStrting(); ' –