Tag Archives: Android
Windows – Microsoft authenticator and authentication on Facebook with 2FA features.
The tutorial for today will show you how to use an authentication app for two-factor authentication on Facebook with 2FA features. This method use 2FA features provide by software and produce a new numeric code every 30-seconds. The application-based 2FA solutions are available for mobile, wearables, or desktop platforms — and even work offline. Install… Read More »
Dropbox Paper collaborative workspace.
Today I discovery this old feature from the Dropbox tool. Dropbox Paper, or simply Paper, is a collaborative document-editing service developed by Dropbox. Originating from the company’s acquisition of document collaboration company Hackpad in April 2014, Dropbox Paper was officially announced in October 2015 and launched in January 2017. It offers a web application, as… Read More »
Android Studio – simple gradient example.
I used Android Studion 3.6.1 on Ubuntu Linux. I start an Empty Project and I change the activity_main.xml file into this:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@drawable/gradient_background" tools:context=".MainActivity"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="GRADIENT COLORS" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" /> </androidx.constraintlayout.widget.ConstraintLayout> |
You can see I change the Hello Word! text into GRADIENT COLORS. I add this source line of code:
1 | android:background="@drawable/gradient_background" |
I create this resource XML into res – drawable folder with click right… Read More »
About TensorFlow Lite.
TensorFlow Lite is an open-source deep learning framework for on-device inference working on Android, iOS, and Windows. This framework comes with a collection of the TensorFlow Lite applications. The TensorFlow Lite can run on CPU, GPU, or via NNAPI. TensorFlow has APIs available in several languages like Python, JavaScript, C++, Java, Go, Swift. TensorFlow Lite… Read More »
Flutter – first steps with flutter.
Flutter is a framework which allows developers to create cross-platform apps using a single programming language. Flutter uses the Dart programming language which was introduced by Google in 2011. You can read more at official website. You can install it with Android Studio and use it with this I.D.E. I download it and unzip it… Read More »
Android Studio – Countdown timer.
Today I will show you how to create a countdown timer application using the Android Studio version 3.4.1. The primary reason why I have not written any Android Studio tutorials is a problem with technical resources. This version of Android Studio seems more promising for the user, but it also has problems that I have… Read More »
Have fun by learning javascript.
For parents and schoolchildren, this application can become an element of relaxation and active rest at any time of the day. Grasshopper is the best way to start your coding adventure with fun, quick games on your phone that teach you to write real JavaScript. Move through progressively challenging levels as you develop your abilities,… Read More »