[] [1]当我在kitkat verison中运行我的应用程序时,文本视图中没有出现文本,导航栏上的按钮微调器。 文字为尼泊尔文。可能是什么原因?
答案 0 :(得分:0)
使用AppCompatActivity扩展MainActivity类
要在导航栏上显示文本,
navigationView = (NavigationView) findViewById(R.id.nav_view); //displays text of header of nav drawer.
headerview = navigationView.getHeaderView(0);
tt1 = (TextView) headerview.findViewById(R.id.textview_username);
tt = (TextView) headerview.findViewById(R.id.textView_emailid);
img1 = (ImageView) headerview.findViewById(R.id.imageView_userimage);
tt1.setText("your_text");
navigationView.setNavigationItemSelectedListener(this);