skip to Main Content

How to set limit to change photo profile only once a day in android programmatically?I use firebase

Fragment_profile @Override public void onClick(View v) { final int id = v.getId(); if (id == R.id.layoutCameraGallery) { openImageCropper(); } } private void openImageCropper() { try { fileUri = null; imgUri = null; List<PowerMenuItem> list = new ArrayList<>(); list.add(new PowerMenuItem(getString(R.string.strGallery), R.drawable.ic_popup_gallery));…

VIEW QUESTION
Back To Top
Search