适用于片段,活动和DrawerLayout组合的{SystemWindows}

时间:2016-03-04 15:32:46

标签: android android-layout android-fragments android-navigation-drawer windowinsets

问题

活动布局有一个DrawerLayoutFrameLayout作为Fragment的内容,LinearLayout由抽屉打开和关闭。内容中使用的片段包含FrameLayout fitsSystemWindows标记和Toolbar

如果我在onCreate()处插入片段,则所有片段都按预期发生,FrameLayout从位置0开始,Toolbar从状态栏下方开始。但是在onCreate()之外的相同代码失败,fitsSystemWindows无法与FrameLayout一起使用。

重要的是,我需要Toolbar上的fitsSystemWindowsFragment标记,而不是Activity上的标记。

如何在onCreate()时刻看到相同的行为?

代码

主要活动

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
            Window window = getWindow();
            window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
            window.getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN);
            window.setStatusBarColor(Color.TRANSPARENT);
        }

        setContentView(R.layout.activity);

        findViewById(R.id.item).setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                // Out of onCreate fails
                replaceFragment();
            }
        });

        // With onCreate all OK
        replaceFragment();
    }

    private void replaceFragment() {
        getSupportFragmentManager().beginTransaction()
                .replace(R.id.content, new MainFragment())
                .commit();
    }

}

主要布局

<android.support.v4.widget.DrawerLayout
    android:id="@+id/drawer"
    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">

    <FrameLayout
        android:id="@+id/content"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

    <LinearLayout
        android:layout_width="256dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:background="#ff0000"
        android:orientation="vertical"
        tools:layout_gravity="">

        <View
            android:layout_width="match_parent"
            android:layout_height="168dp"
            android:layout_marginBottom="16dp"
            android:background="#00ffff"/>

        <TextView
            android:id="@+id/item"
            android:layout_width="match_parent"
            android:layout_height="80dp"
            android:background="#ff00ff"
            android:gravity="center"
            android:text="Click me"/>

    </LinearLayout>

</android.support.v4.widget.DrawerLayout>

片段

public class MainFragment extends Fragment {

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

}

片段布局:

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#00ff00"
        android:fitsSystemWindows="true">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="56dp"
            android:background="#0000ff"/>

    </FrameLayout>

</RelativeLayout>

实施例

要打开的LinearLayout为红色。带FrameLayout标志的fitsSystemWindows为绿色,工具栏为蓝色,青色视图始终有效,需要从y位置0开始。预期为绿色和蓝色,如第一个时间,但在第二次蓝色是独特的观看。

enter image description here

1 个答案:

答案 0 :(得分:3)

所以,问题是,当内容被更改时,系统将不再将这些插件分派给视图层次结构。

使用ViewCompat.requestApplyInsets(View) API可以轻松解决此问题。这将迫使系统再次发送WindowInsets

  

要求执行新的View.onApplyWindowInsets(WindowInsets)调度。这可以回到View.requestFitSystemWindows()

因此,在您的示例中,执行此更改将导致预期的行为:


    private void replaceFragment() {
      getSupportFragmentManager().beginTransaction()
          .replace(R.id.content, new MainFragment())
          // NOTE, we are performing `commitNow()` instead of ordinary `commit()`,
          // Because we want this commit to happen sychronously/immediately
          .commitNow();

      // Ask the framework to dispatch window insets once more to the root of your view hierarchy
      ViewCompat.requestApplyInsets(findViewById(R.id.drawer));
    }

enter image description here