如何在片段中显示动态列表视图?

时间:2014-03-10 07:10:27

标签: android android-fragments

我有滑块菜单,我在其上使用片段。我想在片段上显示列表视图(列表视图上的json数据)。这是我的代码

public class FragmentList extends Fragment {

    ListView sweepstakes_list;


    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,Bundle savedInstanceState) 
    {
        View view = inflater.inflate(R.layout.fragment_home, null);

         //here I use my code

        return view;
    }
}

如何在片段中显示动态列表视图?

1 个答案:

答案 0 :(得分:0)

使用ASYNC任务。 每当要更新列表视图时,都要调用异步任务。