导航抽屉:设置为始终在平板电脑上打开

时间:2013-06-16 12:53:02

标签: android tablet navigation-drawer

我正在使用支持库中的导航抽屉模式: http://developer.android.com/training/implementing-navigation/nav-drawer.html

我试图将其设置为始终在平板电脑上打开(作为侧边菜单)

enter image description here

当前的实现是否可能,或者我们是否必须使用Listview创建新的布局和新结构,而不是重用相同的代码?

5 个答案:

答案 0 :(得分:47)

基于大型设备可能有不同布局文件的想法,我创建了以下项目。

https://github.com/jiahaoliuliu/ABSherlockSlides

<强>亮点

由于大型设备的抽屉始终可见,因此无需抽屉。相反,具有两个具有相同名称的元素的LinearLayout就足够了。

<LinearLayout
     xmlns:android="http://schemas.android.com/apk/res/android"
     android:layout_width="match_parent"
     android:layout_height="match_parent"
     android:orientation="horizontal">
     <ListView
             android:id="@+id/listview_drawer"
             android:layout_width="@dimen/drawer_size"
             android:layout_height="match_parent"
             android:layout_gravity="start"
             android:choiceMode="singleChoice"
             android:divider="@android:color/transparent"
             android:dividerHeight="0dp"
             android:background="@color/drawer_background"/>
    <FrameLayout
            android:id="@+id/content_frame"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginLeft="@dimen/drawer_content_padding"
            />
</LinearLayout>

因为我们在布局文件中没有抽屉,当应用程序尝试在布局中找到元素时,它将返回null。因此,不需要额外的布尔值来查看正在使用的布局。

DrawerLayout mDrawerLayout = (DrawerLayout)findViewById(R.id.drawer_layout);

if (mDrawerLayout != null) {
    // Set a custom shadow that overlays the main content when the drawer opens
    mDrawerLayout.setDrawerShadow(R.drawable.drawer_shadow, GravityCompat.START);
    // Enable ActionBar app icon to behave as action to toggle nav drawer
    getSupportActionBar().setHomeButtonEnabled(true);
    getSupportActionBar().setDisplayHomeAsUpEnabled(true);

    // ActionBarDrawerToggle ties together the proper interactions
    // between the sliding drawer and the action bar app icon
    mDrawerToggle = new ActionBarDrawerToggle(
            this,
            mDrawerLayout,
            R.drawable.ic_drawer,
            R.string.drawer_open,
            R.string.drawer_close) {

        public void onDrawerClosed(View view) {
            super.onDrawerClosed(view);
        }

        public void onDrawerOpened(View drawerView) {
            // Set the title on the action when drawer open
            getSupportActionBar().setTitle(mDrawerTitle);
            super.onDrawerOpened(drawerView);
        }
    };

    mDrawerLayout.setDrawerListener(mDrawerToggle);
}

以下是将其用作布尔值的示例。

@Override
protected void onPostCreate(Bundle savedInstanceState) {
    super.onPostCreate(savedInstanceState);
    if (mDrawerLayout != null) {
        mDrawerToggle.syncState();
    }
}

@Override
public void onConfigurationChanged(Configuration newConfig) {
    super.onConfigurationChanged(newConfig);
    if (mDrawerLayout != null) {
        // Pass any configuration change to the drawer toggles
        mDrawerToggle.onConfigurationChanged(newConfig);
    }
}

答案 1 :(得分:32)

根据CommonsWare的回答,你可以通过几个调整来做到这一点。第一个是设置以下三行:

drawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_OPEN);
drawerLayout.setScrimColor(getResources().getColor(R.color.drawerNoShadow));
isDrawerLocked = true;

drawerNoShadow颜色可以是无alpha颜色(如0x00000000)。这会让你打开抽屉,没有背景覆盖。

您需要做的第二件事是调整FrameLayout的padding_left值。为此,您可以设置一个维度来控制它(默认情况下为0dp) - 在此示例中为R.dimen.drawerContentPadding。您还需要一个R.dimen.drawerSize值,它将是DrawerLayout的宽度。

这允许您检查FrameLayout的paddingLeft值以调用这些行。

FrameLayout frameLayout = (FrameLayout)findViewById(R.id.content_frame);
if(frameLayout.getPaddingLeft() == (int)getResources().getDimension(R.dimen.drawerSize) {
    drawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_OPEN);
    drawerLayout.setScrimColor(getResources().getColor(R.color.drawerNoShadow));
    isDrawerLocked = true;
}

然后,您可以在if(!isDrawerLocked)语句中包含您不想启用的所有功能。这将包括:

  • drawerLayout.setDrawerListener(drawerToggle);
  • getActionBar().setDisplayHomeAsUpEnabled(true);

最后,您需要使用静态抽屉为视图设置备用布局。一个例子是:

<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v4.widget.DrawerLayout

    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <!-- The navigation drawer -->
    <ListView
        android:id="@+id/left_drawer"
        android:layout_width="@dimen/drawerSize"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:choiceMode="singleChoice"
        android:divider="@android:color/transparent"
        android:dividerHeight="0dp"
        android:background="#111"/>

</android.support.v4.widget.DrawerLayout>
<FrameLayout
    android:id="@+id/content_frame"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginLeft="@dimen/drawerContentPadding"/>

这里的美妙之处在于,您可以通过为要定位的设备设置备用dimen.xml文件来控制所有逻辑,您唯一需要更改的是drawerContentPadding的值并提供修改后的布局。 / p>

注意:我最终使用margin_left而不是padding_left,因为在新的布局中它覆盖了抽屉。在http://derekrwoods.com/2013/09/creating-a-static-navigation-drawer-in-android/

上查看有关该技术的更深入的博客文章

答案 2 :(得分:14)

Try setDrawerLockMode()锁定抽屉在大屏幕设备上打开。

正如我在评论中所指出的,我不认为DrawerLayout是针对您的场景设计的(虽然这不是一个坏主意,恕我直言)。使用不同的布局来托管相同的ListView和内容,或者下载和修改自己的DrawerLayout副本,在大屏幕设备上,在打开时将内容滑过而不是重叠。

答案 3 :(得分:5)

它不一定非常复杂,因为有一个简洁明了的方法来实现它。



第1步

只需为平板电脑设备创建与此类似的备用布局文件,并将其放在layout-w600dp-land资源目录中。

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
    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/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:openDrawer="start">

    <!--
    NavigationView and the content is placed in a horizontal LinearLayout
    rather than as the direct children of DrawerLayout.
    This makes the NavigationView always visible.
    -->

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <android.support.design.widget.NavigationView
            android:id="@+id/nav"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:fitsSystemWindows="true"
            app:headerLayout="@layout/nav_header_main"
            app:menu="@menu/activity_main_drawer"/>
        <include
            layout="@layout/app_bar_main"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
    </LinearLayout>

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



第2步

现在,当项目点击非平板电脑设备时,我们不必显示抽屉切换按钮或关闭抽屉。

步骤2.1

为了实现这一目标,有必要在运行时检查设备是平板电脑还是非平板电脑。

将以下内容添加到values目录中的新值资源文件中,并将其命名为config_ui.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <bool name="isDrawerFixed">false</bool>
</resources>

那是非平板设备。对于平板电脑设备,请创建另一个具有相同名称的设备,并将其放在values-w600dp-land

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <bool name="isDrawerFixed">true</bool>
</resources>

在抽屉所属的活动的类中创建一个新字段 private boolean isDrawerFixed;并将其初始化为isDrawerFixed = getResources().getBoolean(R.bool.isDrawerFixed);

步骤2.2

全部设置!现在,我们可以检查设备是已装箱还是非平板电脑if (isDrawerFixed){}

会有这样的事情。

ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
                    this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
            drawer.addDrawerListener(toggle);
            toggle.syncState();

设置操作栏上的切换按钮。将其包裹在if (!isDrawerFixed) {}

要在单击某个项目时关闭抽屉,会出现类似的情况。

drawer.closeDrawer(GravityCompat.START);

也将其包裹在if (!isDrawerFixed) {}中。





作为参考,我已经包含了我使用此方法的应用程序的屏幕截图。

enter image description here

答案 4 :(得分:4)

以前的答案很好,但我在项目中实施时遇到了一些问题,所以我想分享我的解决方案。 首先,我们需要定义一个自定义抽屉:

public class MyDrawerLayout extends DrawerLayout {
    private boolean m_disallowIntercept;

    public MyDrawerLayout (Context context) {
        super(context);
    }

    @Override
    public boolean onInterceptTouchEvent(final MotionEvent ev) {
        // as the drawer intercepts all touches when it is opened
        // we need this to let the content beneath the drawer to be touchable
        return !m_disallowIntercept && super.onInterceptTouchEvent(ev);
    }

    @Override
    public void setDrawerLockMode(int lockMode) {
        super.setDrawerLockMode(lockMode);
        // if the drawer is locked, then disallow interception
        m_disallowIntercept = (lockMode == LOCK_MODE_LOCKED_OPEN);
    }
}

然后我们把它放在一个基本的活动布局中(没有以前答案的任意布局),如下所示:

<MyDrawerLayout 
    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/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:openDrawer="start">

    <!--We must define left padding for content-->
    <FrameLayout
        android:id="@+id/content_frame"
        android:paddingStart="@dimen/content_padding"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

    <android.support.design.widget.NavigationView
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:fitsSystemWindows="true"
        app:menu="@menu/menu_nav" />

</MyDrawerLayout>

此处的内容填充为纵向0dp,横向为300dp,用于NavigationView(根据经验计算)。我们在适当的values文件夹中定义它们:

values/dimens.xml -

<dimen name="content_padding">0dp</dimen>

values-land/dimens.xml -

<dimen name="content_padding">300dp</dimen>

最后,我们将抽屉锁定在活动中:

    if (getResources().getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE) {
        mDrawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_OPEN);
        mDrawerLayout.setScrimColor(0x00000000); // or Color.TRANSPARENT
        isDrawerLocked = true;
    } else if (getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT) {
        mDrawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_UNLOCKED);
        mDrawerLayout.setScrimColor(0x99000000); // default shadow
        isDrawerLocked = false;
    }