How to make imageview over another view in Android ?
There are at least 3 ways to put imageview on another imageview. Simple Order 🔗 This way is just put the imageview after the other imageview in XML file. It is simple like that. The first view will be …
Comparing Two Integers in C Programming Language
Here is the code snippet in C programming language. #include <stdio.h> int main() { int a, b; a = 11; b = 99; // to take values from user input uncomment the below lines − // printf("Enter …
Elixir Cheatsheet - Elixir in Brief
Elixir is a dynamic functional compiled language that runs over an Erlang Virtual Machine called BEAM. Erlang and its BEAM is well known for running low-lattency, distributed and fault-tolerant …
Python Cheatsheet
Python sys Variables 🔗 variable meaning argv Command line args builtiÂn_mÂoduÂle_Ânames Linked C modules byteorder Native byte order check_ÂintÂerval Signal check frequency exec_pÂrefix Root …
PHP cheatsheet
PHP Array Functions 🔗 array_diff (arr1, arr2 …) array_filter (arr, function) array_flip (arr) array_intersect (arr1, arr2 …) array_merge (arr1, arr2 …) array_pop (arr) array_push …
How to get currently running applications in android ?
Use this code in your app’s `src/MainActivity.kt’ file. import android.app.ActivityManager import android.app.ActivityManager.RunningTaskInfo import android.content.Context import …
Should I use Swift or Objective-C to learn iOS development ?
The Swift programming language is the standard features rich language to create iOS apps, iPadOS apps and MacOS X apps. The present and the future is just Swift on Apple ecosystem. Apple is perfecting …
What are great ways to promote an iOS app?
I think deeply about marketing and how to reach your target audience online and offline. In this post, I’ll cover all areas of marketing and advertising your mobile application specially the iOS …
How to animate the change of background color of a view on iOS ?
Step by step guide to create background color changing with beautiful animation 🔗 open Main.storyboard add a button as shown below add one @IBAction for touchUpInside of ‘Change Background’ button. …
How do you animate the change of background color of a view on Android ?
The idea is to use this code snippet. ColorDrawable[] colorDrawables = { new ColorDrawable(Color.RED), new ColorDrawable(Color.BLUE), new ColorDrawable(Color.GREEN) }; TransitionDrawable …