Items in RecyclerView in a Fragmnet don't appear
Items in RecyclerView in a Fragmnet don't appear I saw there are similar post but my code is the same as the codes in the solutions so they weren't useful in my case. My app starts but and two tabs are shown. However the one that is supposed to show the items from a RecyclerView that's in it is empty.I also get this error: E/RecyclerView: No adapter attached; skipping layout So I have an Activity with a TabLayout and a ViewPager public class MainActivity extends AppCompatActivity { TabLayout tabLayout; ViewPager viewPager; PagerAdapter pagerAdapter; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); tabLayout=findViewById(R.id.tab_layout); viewPager=findViewById(R.id.view_pager); tabLayout.addTab(tabLayout.newTab().setText("CitiesFragment")); tabLayout.addTab(tabLayout.newTab().setText("My CitiesFragme...
