所以我有以下代码。
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// Create the adapter that will return a fragment for each of the three
// primary sections of the activity.
mSectionsPagerAdapter = new SectionsPagerAdapter(getFragmentManager());
savedSearches = getSharedPreferences(SEARCHES, MODE_PRIVATE);
// store the saved tags in an ArrayList then sort them
tags = new ArrayList<String>(savedSearches.getAll().keySet());
Collections.sort(tags, String.CASE_INSENSITIVE_ORDER);
// create ArrayAdapter and use it to bind tags to the ListView
adapter = new ArrayAdapter<String>(this, R.layout.list_item, tags);
System.out.println(R.id.list);
ListView lv = (ListView) findViewById(R.id.list);
lv.setAdapter(adapter);
// Set up the ViewPager with the sections adapter.
mViewPager = (ViewPager) findViewById(R.id.pager);
mViewPager.setAdapter(mSectionsPagerAdapter);
}
问题是实例化后 lv 为空。我知道 R.id.list 存在,因为它按预期返回一个 int 。我认为问题在于 R.id.list 在 R.layout.fragment_main 而不是 R.layout.activity_main 中(因为 setContentView 将其设置为 R.layout.activity_main)。但是,我需要为 setContentView 使用 activity_main。有想法该怎么解决这个吗?网上很多地方都只是说这是问题,但没有给出答案。
谢谢。