我正试图将导航抽屉放在操作栏上,当它像这个应用程序一样向右滑动时: [删除]
这是我的主要活动布局:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout ...>
<RelativeLayout android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
...
</RelativeLayout>
<fragment android:name="com...."
android:layout_gravity="start"
android:id="@id/navigation"
android:layout_width="@dimen/navigation_menu_width"
android:layout_height="fill_parent" />
</android.support.v4.widget.DrawerLayout>
有关stackoverflow的其他一些问题与this question类似,但建议所有答案都使用滑动菜单库。但是这个应用程序他们仍然使用android.support.v4.widget.DrawerLayout并且他们成功了。不要问我怎么知道他们使用标准导航抽屉,但我确定。
非常感谢您的帮助。
这里是最终的解决方案:非常感谢 @Peter Cai 这项工作完美无缺。 https://github.com/lemycanh/DrawerOnTopActionBar
答案 0 :(得分:50)
我有一个小小的&#34;技巧&#34;从https://github.com/jfeinstein10/SlidingMenu学习,以实现您所需的效果。
您只需删除窗口装饰视图中的第一个孩子,并将第一个孩子添加到您抽屉的内容视图中。之后,您只需将抽屉添加到窗口的装饰视图中。
以下是您执行此操作的一些详细步骤。
首先,创建一个名为&#34; decor.xml&#34;的xml;或者你喜欢什么。只将DrawerLayout和抽屉放入。&#34; FrameLayout&#34;下面只是一个容器。我们将用它来包装您活动的内容。
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout ...>
<FrameLayout android:id="@+id/container"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
<fragment android:name="com...."
android:layout_gravity="start"
android:id="@id/navigation"
android:layout_width="@dimen/navigation_menu_width"
android:layout_height="fill_parent" />
</android.support.v4.widget.DrawerLayout>
然后删除主布局中的DrawerLayout。现在主要活动的布局应该是
<RelativeLayout android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
...
</RelativeLayout>
我们假设主要活动的布局名为&#34; main.xml&#34;。
在MainActivity中,写如下:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
// Inflate the "decor.xml"
LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
DrawerLayout drawer = (DrawerLayout) inflater.inflate(R.layout.decor, null); // "null" is important.
// HACK: "steal" the first child of decor view
ViewGroup decor = (ViewGroup) getWindow().getDecorView();
View child = decor.getChildAt(0);
decor.removeView(child);
FrameLayout container = (FrameLayout) drawer.findViewById(R.id.container); // This is the container we defined just now.
container.addView(child);
// Make the drawer replace the first child
decor.addView(drawer);
// Do what you want to do.......
}
现在你已经有了一个可以在ActionBar上滑动的DrawerLayout。但您可能会发现状态栏覆盖了它。您可能需要将一个paddingTop添加到Drawer中以便修复它。
答案 1 :(得分:34)
更新:如何使用导航栏覆盖操作栏。 (使用新工具栏) 在build.gradle
中的依赖项中使用这些compile 'com.android.support:appcompat-v7:21.0.0'
compile 'com.android.support:support-v4:21.0.0'
这是您的drawerlayout
<!-- A DrawerLayout is intended to be used as the top-level content view using match_parent for both width and height to consume the full space available. -->
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/layout_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<include layout="@layout/toolbar"/>
<!-- As the main content view, the view below consumes the entire
space available using match_parent in both dimensions. -->
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"/>
</LinearLayout>
<fragment android:id="@+id/navigation_drawer"
android:layout_width="@dimen/navigation_drawer_width"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="@color/list_background"
/>
</android.support.v4.widget.DrawerLayout>
在布局文件夹中创建新的toolbar.xml文件。
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary" />
转到扩展导航抽屉的活动。 并在SetContentView()
之后添加它Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
不要忘记在您的值文件夹中扩展主题NoActionBar。
<style name="Theme.Whtsnxt" parent="@style/Theme.AppCompat.Light.NoActionBar">
<item name="windowActionBar">false</item>
<!-- colorPrimary is used for the default action bar background -->
<item name="windowActionModeOverlay">true</item>
<item name="android:textColorPrimary">@color/white</item>
<item name="colorPrimary">@color/splashscreen</item>
<item name="colorPrimaryDark">@color/holo_blue_light</item>
<item name="android:windowBackground">@color/white</item>
<item name="android:colorBackground">@color/white</item>
</style>
答案 2 :(得分:0)
我发布了一个技巧,可以在以前的Android L版本中实现这一点。 您可以找到我的解决方案in this post。希望它对某人有用。
答案 3 :(得分:0)
如果你不想使用lib或者这个hack:
为此LinearLayout添加工具栏。
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:minHeight="?attr/actionBarSize"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:titleTextColor="@android:color/white"
android:background="?attr/colorPrimary">
</android.support.v7.widget.Toolbar>
在setContentView
之后添加以下行setSupportActionBar((Toolbar) findViewById(R.id.toolbar));