简体   繁体   English

使用adapter.notifyDataSetChanged()更新RecyclerView

[英]Updating RecyclerView with adapter.notifyDataSetChanged()

I've implemented a RecyclerView which has a user interface of a timer counting down. 我实现了一个RecyclerView,它具有一个倒计时计时器的用户界面。 I created a BroadcastService class which creates a CountDownTimer and broadcasts the timer's contents in the onTick() method to my MainActivity, where I use a BroadCast receiever to update the UI. 我创建了一个BroadcastService类,该类创建一个CountDownTimer并将onTick()方法中计时器的内容广播到我的MainActivity,在这里我使用BroadCast接收器来更新UI。

My BroadcastReceiver is only receiving the initial value from the BroadcastService. 我的BroadcastReceiver仅从BroadcastService接收初始值。 I figured that's because I hadn't notified the recycler view's adapter that the data had changed. 我发现这是因为我没有通知回收者视图的适配器数据已更改。 However, because of variable scope, I'm unable to access my adapter from my broadcast receiver. 但是,由于范围可变,所以无法从广播接收器访问适配器。

Perhaps I have a fundamental lack of understanding of variable scope, but how can I access the adapter from 也许我根本不了解变量范围,但是如何从以下位置访问适配器

            adapter = new DataAdapter(getApplicationContext(), data);

in my broadcast receiver class? 在我的广播接收器课程中? Because right now it's not being recognized. 因为现在它尚未被识别。

This is my class definition + onCreate() 这是我的类定义+ onCreate()

public class Profile_Page extends  ActionBarActivity implements DataAdapter.ClickListener {

    private RecyclerView recyclerView;
    public DataAdapter adapter;
    private Context context;
    String currentUser;
    Data current = new Data();

    final List<Data> data = new ArrayList<>();
    public static String BROADCAST_ACTION =
            "packagename.countdown_br";

@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        IntentFilter filter = new IntentFilter();
        filter.addAction(BROADCAST_ACTION);
        filter.addCategory(Intent.CATEGORY_DEFAULT);
        registerReceiver(br, filter);

        startService(new Intent(this, Broadcast_Service.class));
        setContentView(R.layout.activity_profile__page);

        ParseQuery<ParseObject> query = ParseQuery.getQuery("ParseClass");
        query.whereEqualTo("author", ParseUser.getCurrentUser());
        recyclerView = (RecyclerView) findViewById(R.id.recyclerView); 
        recyclerView.setLayoutManager(new LinearLayoutManager(this));
        query.findInBackground(new FindCallback<ParseObject>() {
            @Override

            public void done(List<ParseObject> list, ParseException e) { 
                if (e == null) {
                    for (ParseObject getData : list)
                    {
                        current.1= getData.getString("1");
                        current.2= getData.getString("2");
                        current.3= getData.getString("3");
                        current.4= getData.getString("4");
                        current.5= getData.getString("5");


                        data.add(current);

                    }
                }
                else {

                     }


                adapter = new DataAdapter(getApplicationContext(), data);

                recyclerView.setAdapter(adapter); //set recyclerView to this adapter


            }



        });


    }

And here's my Broadcast Receiver code [which is also in MainActivity.java] 这是我的广播接收器代码[也在MainActivity.java中]

public BroadcastReceiver br = new BroadcastReceiver() {
        @Override
        public void onReceive(Context context, Intent intent) {

            updateGUI(intent);
            //HOW TO NOTIFY DATA SET CHANGE

        }
    };

public void updateGUI(Intent intent) {
        if (intent.getExtras() != null) {
            long millisUntilFinished = intent.getLongExtra("countdown", 0);
            current.goalTimer = String.valueOf(intent.getExtras().getLong("countdown") / 1000);

        }


    }

And, if it is of any use, here's my Broadcast Service class: 而且,如果有什么用,这里是我的广播服务类:

public class Broadcast_Service extends Service {
    private final static String TAG = "BroadcastService";
    LocalBroadcastManager broadcastManager;
    public static final String COUNTDOWN_BR = "packagename.countdown_br";
    Intent bi = new Intent(COUNTDOWN_BR);

    CountDownTimer cdt = null;

    @Override
    public void onCreate() {
        super.onCreate();
        Log.i(TAG, "Starting timer...");

        cdt = new CountDownTimer(30000, 1000) {
            @Override
            public void onTick(long millisUntilFinished) {

                bi.putExtra("countdown", millisUntilFinished);
                sendBroadcast(bi);
            }

            @Override
            public void onFinish() {
                Log.i(TAG, "Timer finished");
            }
        };

        cdt.start();
    }

    @Override
    public void onDestroy() {
        cdt.cancel();
        Log.i(TAG, "Timer cancelled");
        super.onDestroy();
    }
    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        return super.onStartCommand(intent, flags, startId);
    }
    @Override
    public IBinder onBind(Intent intent) {
        return null;
    }
}

First of all, extend the BroadcastReciever class as follows: 首先,按以下方式扩展BroadcastReciever类:

public class MyReciever extends BroadcastReciever{
    private Profile_Page activity;

    public MyReciever(Profile_Page activity){
        this.activity = activity;
    }

    @Override
    public void onReceive(Context context, Intent intent) {
        activity.updateGUI(intent);
    }
}

Create a static instance of your activity and pass it to your receiver. 创建活动的静态实例,并将其传递给接收者。

public class Profile_Page extends  ActionBarActivity implements DataAdapter.ClickListener {
    private static Profile_Page instance;
    private MyReciever myReceiver;
    ...

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        instance = this;
        myReceiver = new MyReciever(instance);
        ...
    }

    public void updateGUI(Intent intent) {
        ...
    }
}

Now you can access your adapter quite easily. 现在,您可以轻松访问适配器。 Hope this helps. 希望这可以帮助。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM