I’m trying to use a ListView and Fragment. But this work not so good Here is my Code: public static class ownFragment extends Fragment { @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { MyListFragment test = new MyListFragment(); test.makelist(); return inflater.inflate(R.layout.whitelist_content, container, false); } public class MyListFragment extends ListFragment { private AdapterView.OnItemClickListener listener; [...]
The post Fragment and Listview appeared first on BlogoSfera.