gpt4 book ai didi

android - 在 Android 上使用设计支持库切换抽屉导航项目

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:51:32 25 4
gpt4 key购买 nike

我需要将 Switch 放入抽屉导航中的项目中。我正在使用新的设计支持库,但我根本找不到它是否可行。使用时

android:checkable

项目只是全选,这不是我想要的。

这是我真正想要的截图。有可能实现吗?

enter image description here

最佳答案

抽屉导航的菜单项:

<item
android:id="@+id/nav_item1"
android:icon="@drawable/ic_item1"
android:title="item1"
app:actionLayout="@layout/layout_switch"
/>

以及该项目的布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal" android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.v7.widget.SwitchCompat
android:id="@+id/drawer_switch"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:text=""/>

</LinearLayout>

编辑:

我最终使用了不同的方法。事实上,我发现您可以使用抽屉中的任何 View ,因此没有必要为菜单内容烦恼。只需以通常的方式(使用监听器等)创建一个 View 并将其添加到抽屉中即可。

关于android - 在 Android 上使用设计支持库切换抽屉导航项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30823837/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com