You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you once generate views with root view, go to layout and add new views, root view will be missed next time when you regenerate new views. Like in this example for fragment
// old generated views
oldView1= (View) view.findViewById(R.id.oldView1);
oldView2= (View) view.findViewById(R.id.oldView2);
// new generated view
newView1= (View) findViewById(R.id.newView1);`
The text was updated successfully, but these errors were encountered:
If you once generate views with root view, go to layout and add new views, root view will be missed next time when you regenerate new views. Like in this example for fragment
The text was updated successfully, but these errors were encountered: