- Mar 18 Fri 2022 09:33
-
Quick Review for Python
- Mar 04 Fri 2022 11:48
-
Import OpenStreetMap Data into Driving Scenario
- Feb 24 Thu 2022 08:48
-
How to Send E-mail in MATLAB with a Gmail account?
1. In order to send mail from the GMail server, the first step is that you have to decrease the security level of your Gmail settings, enable it by clicking here
2. You can run the following snip code directly or save them as a script file and run it
2. You can run the following snip code directly or save them as a script file and run it
- Jan 06 Thu 2022 09:40
-
Android RecyclerView and CardView Tutorial

Add dependencies to build.gradle
implementation 'androidx.recyclerview:recyclerview:1.2.1'
implementation 'androidx.cardview:cardview:1.0.0'
- Jan 01 Sat 2022 15:21
-
How to connect android with Firebase database?

Insert the latest version of firebase into the dependencies of the Gradle
dependencies
{
// ...
// Import the Firebase BoM
implementation platform
(
'com.google.firebase:firebase-bom:29.0.3'
)
// When using the BoM, you don't specify versions in Firebase library dependencies
// Declare the dependency for the Firebase SDK for Google Analytics
implementation
'com.google.firebase:firebase-analytics'
// Declare the dependencies for any other desired
Firebase products
// For example, declare the dependencies for Firebase Authentication and Cloud Firestore
implementation
'com.google.firebase:firebase-auth'
implementation
'com.google.firebase:firebase-firestore'
}
- Jan 01 Sat 2022 14:42
-
How to send email in Android Studio?
1. Android Email Intent Tutorial - How to Send Email From Within Your App
2. Send email automatically by java Mail API android without intent - on background
It is better than the above one because it provides you to send emails automatically by a Java mail API WITHOUT an extra app.
2. Send email automatically by java Mail API android without intent - on background
It is better than the above one because it provides you to send emails automatically by a Java mail API WITHOUT an extra app.
- Dec 31 Fri 2021 20:12
-
How to Take a Picture in Android Studio
1. How to Take a Photo Using The Camera And Display it in Android Imageview
2. Android onActivityResult is Deprecated. What Do I Do Now?
- Dec 23 Thu 2021 10:28
-
How to Create a Thread and Update UI in Android Studio?
- Dec 16 Thu 2021 08:48
-
Camera Preview in Android Studio with OpenCV
Unfortunately, the example[1] does not work for me and there were also some users who had the same problem.
Only a black screen was shown on the App, although I had set up the app's permissions.
Finally, I studied OpenCV Android Studio Examples, and it happened to succeed.
Only a black screen was shown on the App, although I had set up the app's permissions.
Finally, I studied OpenCV Android Studio Examples, and it happened to succeed.
- Dec 13 Mon 2021 11:40
-
Video Streaming Solutions

Since streaming is becoming more and more important in real-world applications, I'm gonna take some effort on surveying how
to set up a streamer on different platforms and devices.
- Dec 13 Mon 2021 11:35
-
Solution for an obsoleted API: startActivityForResult
- Dec 08 Wed 2021 08:43
-
Two Extra Settings for Using WebView in Android Studio

Insert the following two lines into AndroidManifest.xml
1. <uses-permission android:name="android.permission.INTERNET"/>


