我的 Android 应用程序有一点问题。我有一个布局(RelativeLayout),其中放置了 2 个不同的片段,以及一个不属于任何片段的按钮。活动布局的xml代码是这样的
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<fragment
android:id="@+id/fragment1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_marginTop="107dp"
class="app.fragment1" />
<fragment
android:id="@+id/fragment2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_marginTop="107dp"
android:layout_below="@+id/fragment1"
class="app.fragment2" />
<Button
android:id="@+id/btn1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:text="@string/btn1" />
</RelativeLayout>
在第一个片段 (fragment1) 中,我有六个 EditText 控件,用户必须在每个 EditText 中输入一个数字。我的问题是如何访问用户在按钮的“OnClickListener”方法的 EditText 控件中输入的数字?(在 activity.java 文件上)