对于我的项目,我的活动很少,其中一些活动具有自动生成的导航抽屉,我也有设置活动。我需要做的是将导航抽屉中的用户名和电子邮件在设置活动中变化,并将其保存在SQLITE数据库中,因此当我重新启动应用程序时,它不会返回默认值。这是可能的吗?
您可以使用工具栏视图对象设置电子邮件和用户名。
Toolbar toolbar = ((Toolbar) findViewById(R.id.toolbar));
现在获取工具栏文本视图的视图,并设置文本。
TextView txt_email = (TextView) toolbar.findViewById(R.id.txt_email);
TextView txt_username = (TextView) toolbar.findViewById(R.id.txt_username);
txt_email.setText("abc@stackoverflow.com");
txt_username.setText("Username");