1. ホーム
  2. java

[解決済み] setListAdapter メソッドを解決できない。

2022-02-15 11:55:20

質問

フラグメントにlistViewを表示させようとしています。しかし、メソッドsetListAdapter - は解決されません。 listViewのid(android.R.id.list)を取得する必要があるかと思います。 そして、lv.setAdapter(mAdapter);しかし、それもうまくいきません。

public class MyEmployeeFragment extends Fragment {

    private CustomAdapter sAdapter;
    private List<User> userList;
    ProgressDialog mProgressDialog;



    @Override
    public void onActivityCreated(Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);

        setHasOptionsMenu(true);
        userList = new ArrayList<User>();
        sAdapter = new CustomAdapter(getActivity(),userList);
        setListAdapter(sAdapter);
        new CustomAsync().execute();

    }

    private class CustomAdapter extends ArrayAdapter<User> {
        private LayoutInflater inflater;

        public CustomAdapter(Context context, List<User> objects) {
            super(context, 0, objects);
            inflater = LayoutInflater.from(context);
        }

        class ViewHolder {
            TextView id;
            TextView name;
            TextView lastName;
        }


        @Override
        public View getView(int position, View convertView, ViewGroup parent) {

            ViewHolder vH;
            if (convertView == null) {
                convertView = inflater.inflate(R.layout.list_item_employee, null);
                vH = new ViewHolder();
                vH.id = (TextView) convertView.findViewById(R.id.tv_employee_id);
                vH.name = (TextView) convertView.findViewById(R.id.tv_employee_name);
                vH.lastName = (TextView) convertView.findViewById(R.id.tv_employee_last_name);
                convertView.setTag(vH);
            } else
                vH = (ViewHolder) convertView.getTag();


            final User user = getItem(position);
            vH.id.setText(user.getId());
            vH.name.setText(user.getName());
            vH.lastName.setText(user.getLastName());


            return convertView;
        }
    }

    private class CustomAsync extends AsyncTask<Void,Void,List<User>>
    {}
}

XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

    <ListView
        android:id="@android:id/list"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:divider="#B7B7B7"

        />

    <ProgressBar
        style="?android:attr/progressBarStyleLarge"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/progressBar2"
        android:layout_gravity="center_vertical"
        android:layout_weight="1"
        android:layout_centerVertical="true"
        android:layout_centerHorizontal="true" />

    <TextView
        android:id="@id/android:empty"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="@string/empty"
        android:layout_above="@+id/progressBar2"
        android:layout_alignRight="@+id/progressBar2"
        android:layout_alignEnd="@+id/progressBar2"
        android:layout_marginBottom="83dp">
    </TextView>

</RelativeLayout>

解決方法は?

setListAdapter のメソッドです。 ListFragment を拡張しているのに対して、あなたのフラグメントは Fragment .

http://developer.android.com/reference/android/app/ListFragment.html#setListAdapter(android.widget.ListAdapter)

つまり ListFragment

または

拡張 Fragment でレイアウトを膨らませます。 ListView を初期化します。 ListViewonCreateViewFragment を使用し、その後に listView.setAdapter(adapter) .

Fragmentを拡張したい場合

 <ListView
    android:id="@+id/list"

次に

 @Override
 public View onCreateView(LayoutInflater inflater, ViewGroup container,
    Bundle savedInstanceState) {

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

ListView lv = (ListView)rootView.findViewById(R.id.list);
lv.setAdapter(youradapter);

return rootView;
}