-2

I have developed a program which is working in android studio. Three components of this program are MainActivity.java, activity_main.xml and list_item.xml as following

2 Answers2

0

You should move

TextView textView = (TextView) findViewById(R.id.textView3);

textView.setText("Welcome "+username);

to onCreateView instead of onCreate in UserProfile.java

You can look at the answer here : Difference and uses of onCreate(), onCreateView() and onActivityCreated() in fragments for detailed information.

Community
  • 1
  • 1
Madhavan Malolan
  • 719
  • 6
  • 24
0

Looks like

setContentView(R.layout.activity_user_profile);

should be

setContentView(R.layout.user_activity_profile);

in UserProfile onCreate method because the xml you have posted is user_activity_profile.xml

Rohit5k2
  • 17,948
  • 8
  • 45
  • 57