gpt4 book ai didi

android - 抽屉布局在没有导航 Controller 的情况下不起作用

转载 作者:行者123 更新时间:2023-12-04 23:59:32 27 4
gpt4 key购买 nike

为什么我们不能在没有 Navigation/Nav-Controller 的情况下在 Android 中设置抽屉布局?
每当我们想要设置抽屉时,我们都需要一个导航 Controller 。如下所示:

private lateinit var drawerLayout: DrawerLayout

private lateinit var appBarConfiguration : AppBarConfiguration

val navController = this.findNavController(R.id.myNavHostFragment)NavigationUI.setupActionBarWithNavController(this, navController, drawerLayout)
appBarConfiguration = AppBarConfiguration(navController.graph, drawerLayout)

但是,如果应用程序没有 Nav_Graph/NavController 怎么办。
如果应用非常简单呢?
在那种情况下,我们应该如何在我们的应用程序中设置抽屉。

请指导。

注意:在发布这个问题之前我做了很多 homweork 和分析,但在所有文档中我看到 Drawer Layout 需要 NavGraph/NavController/Navigation。

最佳答案

现在的方法是使用navigation architecture components为了在您的应用程序中有一个 Activity 和多个 fragment ;每个屏幕都可以由一个 fragment 表示...这是 Android studio Navigation Drawer Activity 模板的默认设置。NavController 用于控制此方法中 fragment 之间的导航

但是,如果您希望在不使用 NavController 的情况下使用 DrawerLayout。但是在最近的 Android Studio 版本中,没有模板,您必须创建它手动,并处理导航、返回堆栈,几乎所有手动操作。

示例

这是一个轻量级示例,可以让您开始一个更大的示例。

当您从抽屉中选择一个项目时,通常您可以在 NavigationItemSelectedListener 中进行 fragment 交易,但在下面的示例中我只显示了一个 Toast

Activity :


class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)

// Setting custom ActionBar
val toolbar: Toolbar = findViewById(R.id.toolbar)
setSupportActionBar(toolbar)

// Showing the burger button on the ActionBar
supportActionBar?.setDisplayHomeAsUpEnabled(true);
val drawerLayout: DrawerLayout = findViewById(R.id.drawer_layout)
val toggle =
ActionBarDrawerToggle(this, drawerLayout, toolbar, R.string.open, R.string.close)
drawerLayout.addDrawerListener(toggle)
toggle.syncState()

// Handle navigation click events
val navigationView: NavigationView = findViewById(R.id.nav_view)
navigationView.setNavigationItemSelectedListener { item ->

when (item.itemId) {
R.id.nav_account -> {
Toast.makeText(this, "Account", Toast.LENGTH_SHORT).show()
}
R.id.nav_settings -> {
Toast.makeText(this, "Setting", Toast.LENGTH_SHORT).show()
}
R.id.nav_logout -> {
Toast.makeText(this, "Logout", Toast.LENGTH_SHORT).show()
}
}

// Closing navigation drawer
drawerLayout.closeDrawer(GravityCompat.START)

true
}
}
}

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<androidx.drawerlayout.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.Dark"
app:layout_constraintTop_toTopOf="parent" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:textSize="28sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

<com.google.android.material.navigation.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:headerLayout="@layout/navigation_header_layout"
app:menu="@menu/navigation_menu" />

</androidx.drawerlayout.widget.DrawerLayout>

navigation_header_layout.xml

<?xml version="1.0" encoding="utf-8"?>

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="120dp"
android:gravity="center"
android:layout_centerInParent="true"
android:background="@color/colorPrimary"
android:text="Navigation drawer"
android:textColor="#ffffff"
android:textSize="24sp" />

导航菜单.xml

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/nav_account"
android:title="My Account" />
<item
android:id="@+id/nav_settings"
android:title="Settings" />

<item
android:id="@+id/nav_logout"
android:title="Log Out" />
</menu>

build.gradle(模块)

 implementation 'com.google.android.material:material:1.2.1'

字符串.xml

<resources>
<string name="app_name">Navigation Drawer Example</string>
<string name="open">Open</string>
<string name="close">Close</string>
</resources>

styles.xml(NoActionBar 主题)

<resources>
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
</resources>

关于android - 抽屉布局在没有导航 Controller 的情况下不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65579263/

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