我是Android的新手,我试图理解片段视图。 我有这个愚蠢的活动:
<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"
tools:context="com.example.ale.myapplication10.FragmentActivity">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Yeah"
android:onClick="prova"
android:id="@+id/button" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/button"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_marginTop="56dp">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="adadad"
android:id="@+id/button2"
android:layout_marginLeft="38dp"
android:layout_marginStart="38dp"
android:layout_marginTop="67dp" />
</RelativeLayout>
我想要一个覆盖第二个按钮的片段。我该怎么办?