我开发了一个在android studio中工作的程序。 该程序的三个组件是MainActivity.java,activity_main.xml和list_item.xml,如下所示
答案 0 :(得分:0)
你应该移动
TextView textView = (TextView) findViewById(R.id.textView3);
textView.setText("Welcome "+username);
到onCreateView而不是UserProfile.java中的onCreate
您可以在此处查看答案:Difference and uses of onCreate(), onCreateView() and onActivityCreated() in fragments以获取详细信息。
答案 1 :(得分:0)
看起来像
setContentView(R.layout.activity_user_profile);
应该是
setContentView(R.layout.user_activity_profile);
在UserProfile
onCreate
方法中,因为您发布的xml是user_activity_profile.xml