Android片段 - findViewById返回null

时间:2014-07-24 09:46:26

标签: android android-fragments nullpointerexception findviewbyid

我有一个在互联网上似乎很常见的问题:我创建了一个只有一个片段的活动。这是生成的代码:

@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_customer);
        if (savedInstanceState == null) {
            getFragmentManager().beginTransaction()
                .add(R.id.container, new PlaceholderFragment()).commit();
            ListView lv = (ListView) findViewById(android.R.id.list);
        }
    }

在条件之后或之内,我无法使用findViewById获取任何对象:它始终为null。以下是生成代码的其余部分:

public static class PlaceholderFragment extends Fragment {

    public PlaceholderFragment() {
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        View rootView = inflater.inflate(R.layout.fragment_customer,
                container, false);
        return rootView;
    }

activity_customer.xml:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.axacs.marc.CustomerActivity"
    tools:ignore="MergeRootFrame" />

listview实际上是在fragment_customer.xml中:

<ListView
    android:id="@android:id/list"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_below="@+id/new_folder_button"
    android:text="" />

有谁知道缺少什么?

1 个答案:

答案 0 :(得分:23)

如果要在片段中使用listview,请将此行移至onCreateView()后使用以下

ListView lv = (ListView)rootview.findViewById(android.R.id.list);