像导航抽屉一样实施Gmail平板电脑

时间:2014-12-10 11:37:31

标签: android gmail navigation-drawer tablet material-design

我正在研究Gmail应用程序的平板电脑设计。其中Navigation Drawer实施与其他实施不同。我附上图片供您参考。

enter image description here

而且,当我展开抽屉时,它应该像正常的导航抽屉行为一样发生。

enter image description here

我想以同样的方式实施。我正在搜索,但我发现只有link哪个不太有帮助。任何人都可以给我建议我怎么能这样做!

2 个答案:

答案 0 :(得分:13)

您可以在主窗格和自定义侦听器上使用带有边距的SlidingPaneLayout进行交叉淡入淡出。

<com.sqisland.android.CrossFadeSlidingPaneLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/sliding_pane_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
  <FrameLayout
      android:layout_width="240dp"
      android:layout_height="match_parent"
      android:background="@color/purple">
  <TextView
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:text="@string/full"/>
  <TextView
      android:layout_width="64dp"
      android:layout_height="match_parent"
      android:background="@color/blue"
      android:text="@string/partial"/>
  </FrameLayout>
  <TextView
      android:layout_width="400dp"
      android:layout_height="match_parent"
      android:layout_weight="1"
      android:layout_marginLeft="64dp"
      android:background="@color/light_blue"
      android:text="@string/pane_2"/>
</com.sqisland.android.CrossFadeSlidingPaneLayout>

子类SlidingPaneLayout并找到onFinishInflate中的部分和完整窗格:

protected void onFinishInflate() {
  super.onFinishInflate();

  if (getChildCount() < 1) {
    return;
  }

  View panel = getChildAt(0);
  if (!(panel instanceof ViewGroup)) {
    return;
  }

  ViewGroup viewGroup = (ViewGroup) panel;
  if (viewGroup.getChildCount() != 2) {
    return;
  }
  fullView = viewGroup.getChildAt(0);
  partialView = viewGroup.getChildAt(1);

  super.setPanelSlideListener(crossFadeListener);
}

使用侦听器更改整个窗格和部分窗格的Alpha:

private SimplePanelSlideListener crossFadeListener 
    = new SimplePanelSlideListener() {
  public void onPanelSlide(View panel, float slideOffset) {
    super.onPanelSlide(panel, slideOffset);
    if (partialView == null || fullView == null) {
      return;
    }

    partialView.setVisibility(isOpen() ? View.GONE : VISIBLE);
    partialView.setAlpha(1 - slideOffset);
    fullView.setAlpha(slideOffset);
  }
};

此外,在打开布局时隐藏部分窗格。

protected void onLayout(
    boolean changed, int l, int t, int r, int b) {
  super.onLayout(changed, l, t, r, b);

  if (partialView != null) {
    partialView.setVisibility(isOpen() ? View.GONE : VISIBLE);
  }
}

更多信息:http://blog.sqisland.com/2015/01/partial-slidingpanelayout.html

答案 1 :(得分:1)

有一个很棒的库 https://github.com/mikepenz/MaterialDrawer

(使用此库中的MiniDrawer)