찾다

 >  Q&A  >  본문

android - 如何在单个碎片fragment中跳转替换整个布局?

就是说,在mainContent中替换掉整个的mainLinearLayout,请问该怎么操作?我试了replace方法不行

<?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:id="@+id/mainLinearLayout"
    android:layout_width="match_parent"
    android:fitsSystemWindows="true"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity">

    <FrameLayout
        android:id="@+id/mainContent"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1" />

    <android.support.v4.app.FragmentTabHost
        android:id="@+id/tabHost"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <FrameLayout
            android:id="@+id/tabContent"
            android:layout_width="0dp"
            android:layout_height="0dp" />
    </android.support.v4.app.FragmentTabHost>


</LinearLayout>
伊谢尔伦伊谢尔伦2767일 전579

모든 응답(1)나는 대답할 것이다

  • 怪我咯

    怪我咯2017-04-17 17:24:57

    replace는 프래그먼트에만 적용되며 mainContent만 대체합니다. mainLinearLayout은 액티비티에 속하며 액티비티의 setContentView로 교체될 수 있지만 이는 프래그먼트도 교체된다는 의미입니다. 레이아웃을 보면 그냥 mainContent를 교체하려는 의도가 아닌가요? 아이에게 부모를 통제하라고 요구하는 의도를 이해할 수 없습니다.

    회신하다
    0
  • 취소회신하다