单击后抽屉导航标题按钮不起作用

时间:2019-08-21 02:16:20

标签: android button kotlin navigation-drawer

我在导航标题栏中创建一个登录按钮。我可以看到该按钮,但单击该按钮后无响应。

我试图在MainActivity> OnCreate()中添加按钮单击事件,但是它不起作用。

enter image description here

@ViewChildren()

如何在OnCreate()中调用登录按钮事件,以便在单击“登录”按钮后将其链接到登录页面?

请帮助。谢谢

1 个答案:

答案 0 :(得分:2)

请尝试此代码导航视图。我们必须将其带入getHeaderView。

NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view);
View headerview = navigationView.getHeaderView(0);
Button profilename = (Button ) headerview.findViewById(R.id.prof_username);
profilename.setText("your name")