0

所以我有以下代码。

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。有想法该怎么解决这个吗?网上很多地方都只是说这是问题,但没有给出答案。

谢谢。

4

1 回答 1

0

是的,它为空,因为您正在从您的活动未使用的不同布局访问视图。

解决方案:

1:您可以将您的 ListView 从转移fragment_main到您的activity_main

或者

2:您可以启动一个片段并将您的设置fragment_main为片段的布局,然后您可以从那里实例化您的 ListView。

于 2014-06-09T03:51:31.937 回答