KitKat(API级别19)TextView按钮不显示文本

时间:2018-11-04 18:59:46

标签: android

[] [1]当我在kitkat verison中运行我的应用程序时,文本视图中没有出现文本,导航栏上的按钮微调器。 文字为尼泊尔文。可能是什么原因?

![1]:https://i.stack.imgur.com/Fwm3Z.png

1 个答案:

答案 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);