From 75a78cbdfc95b20bfdf02ee2922e191af81bc902 Mon Sep 17 00:00:00 2001 From: MohsinaliEMed Date: Wed, 17 Mar 2021 17:41:57 +0530 Subject: [PATCH] changes on Readme --- README.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0c8f937..e391cb4 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,19 @@ AppUtilsLibrary is a fast and efficient open source. Apputilus is a library with ```Kotlin // For a simple view for Check Network connection: - isNetworkConnected(context,"Internet not connected") +// For a simple image list we use Glide: + val imageView: ImageView = findViewById(R.id.my_image_view) as ImageView + LayoutUtils.setImageView(mContext, ImageView,imgViewLoadUrl,R.drawable.loading_spinner,R.drawable.img_error) + + // For Round Set Image + LayoutUtils.setImageViewRounded(mContext, ImageView,imgViewLoadUrl,R.drawable.loading_spinner,R.drawable.img_error) + + // For show msg on Logcat + LogsUtils.showError(tagValues,tagName,buildType) + + // For Tost Message + LogsUtils.showToast(context,"Hello World") + ```