java - 异步任务未加载数据

标签 java android asynchronous android-asynctask contacts

代码

    public class ContactSettings extends Fragment {
    private RecyclerView contactsList;
    private List<ContactsHelper> contacts = new ArrayList<>();
    private LinearLayoutManager linearLayoutManager;
    private ContactsAdapter mAdapter;
       View rootView;
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        // Inflate the layout for this fragment
        rootView = inflater.inflate(R.layout.settings_contact, container, false);



        contactsList = (RecyclerView) rootView.findViewById(R.id.usersList);
        //Add the data first
        linearLayoutManager = new LinearLayoutManager(getActivity());
        //and then create a object and pass the lis
        mAdapter = new ContactsAdapter(contacts);

        contactsList.setHasFixedSize(true);
        contactsList.setLayoutManager(linearLayoutManager);
        contactsList.setAdapter(mAdapter);
        mAdapter.notifyDataSetChanged();

        COntacts runner = new COntacts();


        return rootView;
    }

    @Override
    public void onStart(){
        super.onStart();
    }

    private class COntacts extends AsyncTask<String, Void, String> {
        @Override
        protected String doInBackground(String... urls) {
            ContentResolver contentResolver = getActivity().getContentResolver();
            Cursor cursor = contentResolver.query(ContactsContract.Contacts.CONTENT_URI, null, null, null, ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME + " ASC");
            if (cursor != null) {
                if (cursor.getCount() > 0) {
                    while (cursor.moveToNext()) {
                        int hasPhoneNumber = Integer.parseInt(cursor.getString(cursor.getColumnIndex(ContactsContract.Contacts.HAS_PHONE_NUMBER)));
                        if (hasPhoneNumber > 0) {
                            String id = cursor.getString(cursor.getColumnIndex(ContactsContract.Contacts._ID));
                            String name = cursor.getString(cursor.getColumnIndex(ContactsContract.Contacts.DISPLAY_NAME));
                            Cursor phoneCursor = contentResolver.query(
                                    ContactsContract.CommonDataKinds.Phone.CONTENT_URI,
                                    null,
                                    ContactsContract.CommonDataKinds.Phone.CONTACT_ID + " = ?", new String[]{id},
                                    null);
                            if (phoneCursor != null) {
                                if (phoneCursor.moveToNext()) {
                                    String phoneNumber = phoneCursor.getString(phoneCursor.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER));

                                    contacts.add(new ContactsHelper(name, phoneNumber));
                                    phoneCursor.close();
                                }
                            }
                        }
                    }
                }
                cursor.close();
            }
            return "Download failed";
        }


        @Override
        protected void onPostExecute(String result) {
        }
    }

    public void onClick(View view) {

    }
}

它曾经在主线程中工作,但速度很慢,所以我想到使用Asynctask,但我对此很陌生,并且在线教程不清楚,所以有人可以告诉我这有什么问题以及如何在后台获取联系人而又不慢......................................................................................

最佳答案

正如我在代码中看到的,您没有在 doInBackground 中使用 urls 参数。并且您需要将 contacts 传递给在 UI Thread 中运行的 onPostExecute :

private class COntacts extends AsyncTask<Void, Void, List<ContactsHelper>> {

@Override
protected List<ContactsHelper> doInBackground(Void... urls) {
   List<ContactsHelper> contacts = new ArrayList<>();
   ...
   return contacts
}

@Override
protected void onPostExecute(List<ContactsHelper> result) {
    contacts.addAll(result);
    mAdapter.notifyDataSetChanged();
}

您需要在代码中执行runner对象:

runner.execute()

关于java - 异步任务未加载数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53049181/

相关文章:

java - java小程序中无法追踪的异常

java - 如何使用 LayoutInflater 动态添加 editText 和按钮并为它们设置唯一的 id?

javascript - Javascript 执行启动 chrome 而不是 webview

c# - Google Play Custom App Publishing API 在 C# 中发布私有(private)应用

php - ReactPHP 真的是异步的吗?

java - 在 Java 中多次运行命令行程序 - 这是正确的吗?

java - RxJava 结合最新调试

java - 在 Windows 中使用 java 查找特定的注册表项

node.js - Mongoose 无法将新对象推送到父数组

java - Java 应用服务器中的 CompletableFuture/parallel Stream