我有一个严重的疑问。如何在Android Studio中的导航抽屉菜单项的右端添加可扩展列表按钮?有关更多详细信息,请让我发布我的图像...我刚刚编辑了我的帖子...
以下是我activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
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"
android:fitsSystemWindows="true"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context=".MainActivity">
<android.support.design.widget.AppBarLayout
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:id="@+id/view">
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:local="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_scrollFlags="scroll|enterAlways"
android:background="@color/red"
local:popupTheme="@style/ThemeOverlay.AppCompat.Light"
local:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" />
<android.support.design.widget.TabLayout
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:id="@+id/tabLayout"
android:background="@color/red"
app:tabIndicatorColor="@color/white"
app:tabTextAppearance="@style/MyStyle"
android:layout_below="@+id/toolbar"
android:scrollbars="horizontal"
android:layout_alignParentLeft="true">
</android.support.design.widget.TabLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/viewPager">
</android.support.v4.view.ViewPager>
</android.support.design.widget.CoordinatorLayout>
这是我的activity_navigation.xml
<?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"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="com.example.goserwizz.NavigationActivity">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<include layout="@layout/content_main" />
</android.support.design.widget.CoordinatorLayout>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/main_container">
</FrameLayout>
<android.support.design.widget.NavigationView
android:id="@+id/navigation_view"
android:layout_height="match_parent"
android:layout_width="wrap_content"
android:layout_gravity="start"
app:headerLayout="@layout/header"
app:menu="@menu/menu_navigation"/>
</android.support.v4.widget.DrawerLayout>
这是我的menu_navigation.xml
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<group android:checkableBehavior="single">
<item
android:id="@+id/Book_my_services"
android:title="Book my services"
android:icon="@drawable/book_my_service"/>
<item
android:id="@+id/My_services"
android:title="My services"
android:childIndicatorRight="30dp"
android:icon="@drawable/services" />
<item
android:id="@+id/Add_your_vehicles"
android:title="Add your vehicles"
android:icon="@drawable/add_vehicle"/>
<item
android:id="@+id/Reschedule_slot"
android:title="Reschedule slot"
android:icon="@drawable/slot" />
<item
android:id="@+id/Cancel_services"
android:title="Cancel services"
android:icon="@drawable/cancel_service"/>
<item
android:id="@+id/history"
android:title="History"
android:icon="@drawable/history"/>
<item
android:id="@+id/Payment"
android:title="Payment"
android:icon="@drawable/payment"/>
</group>
<item android:title="HELP">
<menu>
<item
android:id="@+id/Emergency_assistant"
android:title="Emergency Assistant"
android:icon="@drawable/emergency" />
<item
android:id="@+id/Call_support"
android:title="Call support"
android:icon="@drawable/call_support" />
<item
android:id="@+id/Settings"
android:title="Settings"
android:icon="@drawable/settings" />
</menu>
</item>
<item android:title="MORE">
<menu>
<item
android:id="@+id/feedback"
android:title="Feedback"
android:icon="@drawable/feedback" />
<item
android:id="@+id/How_it_works"
android:title="How it works"
android:icon="@drawable/how_it_work"/>
<item
android:id="@+id/FAQ"
android:title="FAQ"
android:icon="@drawable/faq"/>
<item
android:id="@+id/terms_and_conditions"
android:title="Terms and conditions"
android:icon="@drawable/terms_condition"/>
<item
android:id="@+id/Privacy_policy"
android:title="Privacy policy"
android:icon="@drawable/privacy"/>
<item
android:id="@+id/About"
android:title="About"
android:icon="@drawable/about"/>
</menu>
</item>
</menu>
现在,我应该在哪里进行更改,以便可以在导航菜单项右侧获得可扩展列表按钮。
目前我的抽屉菜单看起来类似于这个
但我需要像这样的导航抽屉
我需要导航菜单项右侧的可展开列表按钮。请帮帮我...提前非常感谢.....
<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">
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<fragment
android:id="@+id/navigation_drawer"
android:name="com.rooftap.adapterClass.NavigationDrawerFragment"
android:layout_width="@dimen/navigation_drawer_width"
android:layout_height="match_parent"
android:layout_gravity="start"
tools:layout="@layout/fragment_navigation_drawer" />
</android.support.v4.widget.DrawerLayout>
自定义您的fragment_navigation_drawer。xml布局添加微调器或任何您想要的东西,就像我们在普通布局中所做的那样,并创建NavigationDrawerFragment。行动类。不要使用android.support.design.widget.NavigationView。
我需要你的帮助。我迈出了android编程的第一步! SOS!!! 我创建了经典的导航抽屉,你可以通过点击汉堡图标或从左侧滑动来打开/关闭。我还创建了右侧菜单(就像在Facebook应用程序中一样),并使用了GitHub的这个库(https://GitHub.com/jfeinstein10/slidingmenu)。最后,我有冲突的抽屉导航菜单和右侧菜单。 当导航抽屉菜单打开时,你想通过从右向左
我想在ActionBar的右侧[而不是默认的左侧]显示ActionBar导航图标。 此外,我需要有相同的幻灯片在动画导航抽屉图标在Gmail和谷歌加应用程序。 有没有什么方法可以轻松实现右侧的动画。 任何形式的帮助或建议都是感激的。 提前道谢!
问题内容: 在以下活动中,我上面有一个片段和一个图像。片段只是一个较暗的操作栏,上面有图片。我正在尝试将左侧幻灯片菜单作为一个片段,以便可以在每次活动中使用它。 主要活动; 主要活动XML; 每个活动上应包含的标题栏片段; 标题栏片段XML; 如何在标题栏中实现导航抽屉? 问题答案: 尝试这样的操作,对于布局文件,您只需要 实现可以像这样简单。
我已经设置了一个左右两侧的导航抽屉。除了一件事,一切都很好。 我希望我的另一个动作栏项目切换右边的抽屉菜单。正常的左边动作栏切换效果很好。谷歌Android应用程序通知面板是我希望动作模仿的。 下面是我用来设置右侧切换的代码(现在它在单击时强制关闭): 如果有人知道怎么做,如果你能让我知道就太好了! 谢谢
http://developer.android.com/training/implementation-navigation/nav-drawer.html 根据这份文件,它没有说明是否可以实现从右手边抽屉。有可能吗?:(
问题内容: 我有一个导航图,该导航图将此片段用作主活动XML中的主页。 我有一个带有菜单的Drawer布局,单击导航抽屉按钮时,我无法设法使导航正常工作(它可以从主要片段工作,但是当我单击Drawer按钮时,不能工作),如果我使用的是旧方法使用:对导航抽屉编程,我的navcontroller丢失了!!我得到类似的错误 navcontroller无法识别目标片段,因为即使不是这种情况,控制器也会看到