8

我正在通过专业的 Android 4 应用程序开发工作。第 4 章修改了 To Do List 应用程序以使用片段,但我正在尝试在 Gingerbread 设备上进行测试。书中提到了使用支持库来允许在较低版本的设备上使用 Android v3 或 v4 功能,但没有很好地涵盖。

我遇到了一个特别的问题:

    // Get references to the Fragments
    android.app.FragmentManager fm = getFragmentManager();
    ToDoListFragment    todoListFragment = (ToDoListFragment) fm.findFragmentById( R.id.ToDoListFragment );

我在顶部有这些导入: import android.support.v4.app.FragmentManager; 导入android.support.v4.app.ListFragment;

但 lint 在“ToDoListFragment todoListFragment = (ToDoListFragment)”行发出警告:无法从 Fragment 转换为 ToDoListFragment

在我的 ToDoListFragment 类中,我有:

    import android.support.v4.app.ListFragment;

    public class ToDoListFragment extends ListFragment {
    }

这几乎是书中的逐字记录,除了使用支持库的更改。

我不清楚如何使用 v4 支持库使此代码正常工作。如果这不是足够的信息,我提前道歉。我还在学习这个,而且我对 C/C++ 比对 Java 更熟悉。如果我不使用支持库,代码构建得很好,可以在 Ice Cream Sandwich 设备上运行,但我也想让它在较低级别的设备上运行。

4

2 回答 2

13

你应该使用getSupportFragmentManager()而不是getFragmentManager()

android.support.v4.app.FragmentManager fm = getSupportFragmentManager()
于 2012-11-06T19:43:32.383 回答
2

我想对这个例子做同样的事情。有几个地方需要更改才能使其与支持库一起使用。这是我完整的 java 文件,注释中突出显示了更改:

package com.paad.todolist;

import java.util.ArrayList;
import android.support.v4.app.FragmentActivity; // Because we're using the support library 
                                                // version of fragments, the import has to be
                                                // FragmentActivity rather than Activity
import android.support.v4.app.FragmentManager;  // Support version of Fragment Manager
import android.os.Bundle;
import android.util.Log;
import android.widget.ArrayAdapter;

// because we're using the support library version of fragments, the class has to extend the
// FragmentActivity superclass rather than the more usual Activity superclass
public class ToDoListActivity extends FragmentActivity implements NewItemFragment.OnNewItemAddedListener {

    // logging tag
    private static final String TAG = "ToDoListActivity";

    // create an array adaptor ready to bind the array to the list view
    private ArrayAdapter<String> aa;

    // set up array list to hold the ToDo items
    private ArrayList<String> todoItems;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        Log.i(TAG, "The onCreate method has started");

        // inflate the view
        setContentView(R.layout.activity_to_do_list);

        // get references to the fragments

        // FragmentManager fm = getFragmentManager(); this won't work with the support library version
        FragmentManager fm = getSupportFragmentManager();   // this is the equivalent for support library

        ToDoListFragment todoListFragment = (ToDoListFragment)fm.findFragmentById(R.id.ToDoListFragment);

        // Create the array list of to do items
        todoItems = new ArrayList<String>();

        // Create the array adapter to bind the array to the listview
        aa = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, todoItems);

        // bind the array adapter to the list view
        todoListFragment.setListAdapter(aa);        
    }

    // implement the listener... It adds the received string to the array list
    // then notifies the array adapter of the dataset change
    public void onNewItemAdded(String newItem) {
        todoItems.add(newItem);
        aa.notifyDataSetChanged();
    }           
}
于 2013-01-24T23:05:15.453 回答