使用随机数据填充ListView

时间:2015-05-25 14:58:25

标签: android xml android-layout android-fragments android-listview

这是我的片段ERROR: syntax error at or near "INTO" LINE 1: SELECT COUNT(*) AS total FROM (INSERT INTO recensione (testo...

onCreateView

我没有收到任何错误,我也进行了验证,` String[] pelda = { "12345", "blabla", "hhahho", }; List<String> elorejelzes = new ArrayList<String>(Arrays.asList(pelda)); elorejelzesAdapter = new ArrayAdapter<String>(getActivity(), R.layout.lista_elem_elorejelzes, R.id.lista_elem_elorejelzes_textview, elorejelzes); View rootView = inflater.inflate(R.layout.fragment_idojaras_kijelzo, container, false); ListView listView = (ListView) rootView.findViewById(R.id.listView); listView.setAdapter(elorejelzesAdapter); return inflater.inflate(R.layout.fragment_idojaras_kijelzo, container, false); 正确地启动了Activity

以下是我的fragment fragment代码:

fragment_idojaras_kijelzo   

XML

1 个答案:

答案 0 :(得分:1)

我猜测问题是ListView没有出现。

这很可能是因为您没有返回您正在充气和操纵的视图。

你给第一个视图充气,找到它上面的列表视图,并设置适配器(这一切都是正确的),但是然后你给新视图充气并返回..你需要返回视图你需要操纵。我在下面的代码中已经显示了这一点。

    View rootView = inflater.inflate(R.layout.fragment_idojaras_kijelzo, container, false);

    ListView listView = (ListView) rootView.findViewById(R.id.listView);
    listView.setAdapter(elorejelzesAdapter);
    return rootView;