发布绑定数据查找ListView

时间:2018-06-03 21:10:34

标签: java android

我正在尝试理解Java ListView组件,我想在加载片段时在其上添加数据,所以我在onCreateView方法中这样做。如果我错了,请纠正我:

Public class JobsListFragment  extends Fragment {
ListView listView ;
private ArrayAdapter<String> listAdapter ;

@Nullable
@Override
 public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
    return inflater.inflate(R.layout.fragment_jobs_list, container, false);

    // Find the ListView resource.
      View rootView = inflater.inflate(R.layout.fragment_jobs_list, container, false);

    // Create and populate a List of planet names.
    String[] planets = new String[] { "Mercury", "Venus", "Earth", "Mars",
            "Jupiter", "Saturn", "Uranus", "Neptune"};

    ArrayList<String> planetList = new ArrayList<String>();
    planetList.addAll( Arrays.asList(planets) );

    listAdapter = new ArrayAdapter<String>(this, R.layout.joblayoutrow, planetList);

    listAdapter.add( "Ceres" );
    listAdapter.add( "Pluto" );
    listAdapter.add( "Haumea" );
    listAdapter.add( "Makemake" );
    listAdapter.add( "Eris" );

    // Set the ArrayAdapter as the ListView's adapter.
    mainListView.setAdapter( listAdapter );
}

我遇到的问题是这两行:

    mainListView = (ListView) findViewById( R.id.mainListView );

    listAdapter = new ArrayAdapter<String>(this, R.layout.joblayoutrow, planetList);

所以我尝试使用inflate,但我也找不到ListView。这是我的ListView片段:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".JobsListFragment">


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

另外,因为我在这里使用片段,所以我似乎无法访问setContentView。对不起,如果这些是基本问题,我会在多年的挫折之后抛弃Xamarin

1 个答案:

答案 0 :(得分:2)

首先:在return语句之后,什么都不会被执行

第二:使用rootVew初始化.cell内的内容,因为R.layout.fragment_jobs_list布局内的内容现在位于R.layout.fragment_jobs_list

第三:返回rootView

rootVIew