I have an dialog which I wanted to show the dialog after every hour in android, its like Scheduled time, is this possible to do?
Dialog dialog = new Dialog(MainActivity.this);
dialog.setContentView(R.layout.collect_points);
dialog.findViewById(R.id.collect_point_everyday).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
dialog.dismiss();
}
});
dialog.show();