amitkumarverma-android
amitkumarverma-android
private void cropCapturedImage(Uri picUri) { Uri destination = Uri.fromFile(new File(getActivity().getCacheDir(), "cropped")); Crop.of(picUri, destination).asSquare().start(getContext(), EditPersonalInfoFragment.this, Crop.REQUEST_CROP); } private void handleCrop(int resultCode, Intent result) { if (resultCode == Activity.RESULT_OK) { Uri uri...
@Override public Response intercept(Interceptor.Chain chain) throws IOException { final Request request = chain.request(); final Request.Builder builder = request.newBuilder(); String apiAuthType = request.header(ApiHeader.API_AUTH_TYPE); if (apiAuthType == null) { apiAuthType = ApiHeader.PROTECTED_API;...
Hi, I want to open blog detail on fragment instead of web url inside my feed .how navigate fragment from BlogFragment.