Android Developers
رفتن به کانال در Telegram
Here You Can Get Android App Development Tutorials For Free LinkTree https://linktr.ee/androiddeveloperspage Contact Me @androiddevstutorialscommentbot
نمایش بیشتر808
مشترکین
اطلاعاتی وجود ندارد24 ساعت
+167 روز
+15630 روز
آرشیو پست ها
QR Code Scanner From Gallery
https://t.me/androiddevelopersdiscussion/327
@androiddevstutorials
If You Want To Use The CircleImageView Widget To Show Profile Picture For Chat App Replace The Inject Property With The Following Code.
app:civ_border_width="0dp"
app:civ_border_color="#FFFFFF"
app:civ_circle_background_color="#FFFFFF"
app:civ_border_overlay="true"
After That You Will Have A Nice Looking Profile View.
👉 @androiddevstutorialsThis Project Can Retrieve The Retrieve Database URL, App ID, API Key, & Storage Bucket URL From The Picked Google Service JSON File Like Sketchware Pro.
👉 @androiddevstutorials
If Any One Have A Sketchware Pro, AIDE Or Android Studio Open Source Project & Want To Share With Us With Its Credit Can Contact Us.
👉 @SE_BIBEL_MEK
👉 @RaeyBelihu2000
try {
InputStream inputstream = getAssets().open("imagename.jpg");
Drawable drawable = Drawable.createFromStream(inputstream, null);
imageview1.setImageDrawable(drawable);
inputstream.close();
} catch (Exception exception) {
exception.printStackTrace();
}