片段调试GPU透支

时间:2018-11-28 13:34:00

标签: java android fragment gpu

我有MainActivity,并在R.id.container中添加了2个片段。

MainActivity如下所示。

public class MainActivity extends AppCompatActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main_activity);

        getSupportFragmentManager().beginTransaction()
                .add(R.id.container, Fragment1.newInstance())
                .commit();

        getSupportFragmentManager().beginTransaction()
                .add(R.id.container, Fragment2.newInstance())
                .commit();
    }
}

Fragmnet1Fragment2具有相同的代码,但布局不同。

public class Fragment1 extends Fragment {
    public static Fragment1 newInstance() {
        return new Fragment1();
    }

    @Override
    public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container,
                             @Nullable Bundle savedInstanceState) {
        return inflater.inflate(R.layout.fragment_1, container, false);
    }
}

关联的布局fragment1.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ffffff"
    tools:context=".ui.main.Fragment1">

    <TextView
        android:id="@+id/message"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Test1"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>

Fragment2的布局为fragmnet2.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ffffff"
    tools:context=".ui.main.Fragment1">

    <TextView
        android:id="@+id/message"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="32dp"
        android:text="Test2"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>

这是添加MainActivityFragment1后的调试GPU覆盖Fragment2

enter image description here

请参见以下图片。这是另外一张GPU绘图,因为Fragment1中的布局保留在MainActivity中。

enter image description here

如何添加片段而不加载/显示下面的片段?

1 个答案:

答案 0 :(得分:1)

您要在同一容器中添加两个片段。这是根据您的代码的确切行为。如果只需要显示稍后添加的片段,则需要replace而不是add片段。

我不知道您的确切用例。但是,我猜您正在尝试根据一些检查来显示fragment1和fragment2。在这种情况下,您可以考虑在MainActivity中具有如下所示的两个功能。

public boolean fragment1Loaded = false;

public void switchToFrag1() {
    fragment1Loaded = true;

    getSupportFragmentManager().beginTransaction()
            .replace(R.id.container, Fragment1.newInstance())
            .commit();
}

public void switchToFrag2() {
    fragment1Loaded = false;

    getSupportFragmentManager().beginTransaction()
            .replace(R.id.container, Fragment2.newInstance())
            .commit();
}

现在在onCreate函数中,您需要根据必要的条件调用函数。

if (showFirstFragment) switchToFrag1();
else switchToFrag2();

您可以根据需要在MainActivity中进行切换。

希望有帮助!

更新

您可以处理MainActivity中的后退按钮单击,并自己处理逻辑。覆盖onBackPressed函数,然后根据需要切换片段。例如,请参见上面修改的功能。我现在正在参考屏幕中正在加载的片段。然后像下面这样覆盖onBackPressed函数。

@Override
public void onBackPressed() {
    if (fragment1Loaded) super.onBackPressed();
    else switchToFrag1();
}

希望您能明白。