gpt4 book ai didi

适用于较低 API 的 Android Material Design 抽屉导航

转载 作者:行者123 更新时间:2023-11-30 02:25:14 25 4
gpt4 key购买 nike

是否可以在较低 API 上像 Gmail 应用程序那样在 Material Design 中制作抽屉导航?如果有可能有人有教程或指南来做这件事吗?谢谢

最佳答案

为此使用 Appcompat 库,这里有一个如何设置它的链接:http://android-developers.blogspot.in/2014/10/appcompat-v21-material-design-for-pre.html

您需要使用工具栏来显示箭头切换:

<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"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>

在您的 mainView 中,您需要添加以下内容:

setContentView(R.layout.guidelib_activity_main);
mToolbar = (Toolbar)findViewById(R.id.toolbar);
setSupportActionBar(mToolbar);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
getSupportActionBar().setHomeButtonEnabled(true);

另请参阅此问题:Appcompat Toolbar Not Showing With Navigation Drawer

关于适用于较低 API 的 Android Material Design 抽屉导航,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27969452/

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