我想将文本设置为导航抽屉标题文本,我搜索了很多,但每个人都通过膨胀布局来实现它,但对我来说它创建了2个标题所以有没有办法设置它而不膨胀布局?
NavigationVIEw navigationVIEw = (NavigationVIEw) findVIEwByID(R.ID.nav_vIEw);VIEw header=navigationVIEw. findVIEwByID(R.ID.header);/*VIEw vIEw=navigationVIEw.inflateheaderVIEw(R.layout.nav_header_main);*/name = (TextVIEw)header.findVIEwByID(R.ID.username);email = (TextVIEw)header.findVIEwByID(R.ID.email);name.setText(personname);email.setText(personEmail);`
解决方法:
您可以通过navigationVIEw.getheaderVIEw(0)获取导航标题视图,请尝试下面的代码
NavigationVIEw navigationVIEw = (NavigationVIEw) findVIEwByID(R.ID.nav_vIEw);navigationVIEw.setNavigationItemSelectedListener(this);VIEw header=navigationVIEw.getheaderVIEw(0);/*VIEw vIEw=navigationVIEw.inflateheaderVIEw(R.layout.nav_header_main);*/name = (TextVIEw)header.findVIEwByID(R.ID.username);email = (TextVIEw)header.findVIEwByID(R.ID.email);name.setText(personname);email.setText(personEmail);
总结 以上是内存溢出为你收集整理的android – 如何设置文本以从导航抽屉中的抽屉页眉布局查看而不膨胀视图全部内容,希望文章能够帮你解决android – 如何设置文本以从导航抽屉中的抽屉页眉布局查看而不膨胀视图所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)