Posts

Notification with action buttons - Java

Image
Show Notification, Add action button, handle button clicks In this tutorial we will learn the followings: ✓How to show notifications ✓How to add action buttons in notification ✓Handle action button clicks Video: Step 1:  Create a new project   OR   Open your project Step 2: Create two activities 1) LikeActivity 2) DislikeActivity Step 3: Code activity_main.xml <?xml version="1.0" encoding="utf-8"?> <android.support.constraint.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" tools:context= ".MainActivity" > <Button android:id= "@+id/showNotificationBtn" android:layout_width= "wrap_content" and...

Show Notifications on any device - Java

Image
Working with android notifications using Android Studio and Java In this video we will simply show notification on clicking of button. The notification will work on any Android OS. Video Step 1:  Create a new project   OR   Open your project Step 2: Code: activity_main.xml <?xml version="1.0" encoding="utf-8"?> <android.support.constraint.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" tools:context= ".MainActivity" > <Button android:id= "@+id/showNotificationBtn" android:layout_width= "wrap_content" android:layout_height= "wrap_content" android:text= "Show Notification...

iOS Application Development Course

Image
The iOS Application Development Course - Xocde A complete course to learn iOS application development using Xcode IDE and Swift language from scratch. From beginners to expert The iOS Application Development Course - Xocde Videos

Options Menu Fragment - Kotlin

Image
Options Menu Fragment - Android Studio - Kotlin This will cover the followings: ✓Use Options Menu / Actionbar menu ✓Use Options Menu in fragments ✓Add items with icons in options menu ✓Show different options of an options menu in each fragment ✓Handle options menu's item clicks >>Watch For Java Video: Step 1:  Create a new Project   or   open new project Step 2: Code menu_main.xml <?xml version="1.0" encoding="utf-8"?> <menu xmlns:android= "http://schemas.android.com/apk/res/android" xmlns:app= "http://schemas.android.com/apk/res-auto" > <item android:id= "@+id/action_settings" android:title= "Settings" /> <item android:id= "@+id/action_sort" android:title= "Sort" android:icon= "@drawable/ic_sort_white" app:showAsAction= "always" /> </menu> FragmentOne.kt ...

Options Menu Fragment - Java

Image
Options Menu Fragment - Android Studio - Java This will cover the followings: ✓Use Options Menu / Actionbar menu ✓Use Options Menu in fragments ✓Add items with icons in options menu ✓Show different options of an options menu in each fragment ✓Handle options menu's item clicks >>Watch For Koltin Video: Step 1:  Create a new project   OR   Open your project Step 2: Code: menu_main.xml <?xml version="1.0" encoding="utf-8"?> <menu xmlns:android= "http://schemas.android.com/apk/res/android" xmlns:app= "http://schemas.android.com/apk/res-auto" > <item android:id= "@+id/action_settings" android:title= "Settings" /> <item android:id= "@+id/action_sort" android:title= "Sort" app:showAsAction= "always" android:icon= "@drawable/ic_sort_white" /> </menu> FragmentOne.java...

Cricket App - Android Studio - Java

Image
Develop Cricket Live Scores & Summary Android Application Cricket App using API of cricapi.com with Volley library. ✓Get list of Old, Ongoing, Upcoming matches.  ✓Detail of match with live scores  ✓Players list of both teams  ✓Player Stats  ✓Summary of Bowling, Batting, Fielding, Man of the match Watch All Videos:

Obtain Certificate SHA1 and SHA-256 Fingerprint Using Android Studio

Image
What is SHA1? SHA1 ( S ecure H ash A lgorithm 1 ) hash value is typically rendered as a hexadecimal number, 40 digits long used by the organizations like Google , Facebook etc uses SHA-1 hash value for secure connection between their services and clients. SHA-1 value of debug will be different from SHA-1 value of release build . How to Obtain SHA1 Using Android Studio Terminal 1) Open Android Studio 2) Open Terminal 3) Type the command (MAC) ./gradlew signingReport                          OR 3) Type the command (Windows) .\gradlew signingReport Note: If you receiver Permission denied warning then put bash and then command for example bash ./gradlew signingReport 4) SHA1 certificate will be displayed in the window opened at the bottom Using Keystore file with Terminal 1) Open Android Studio 2) Open Terminal and type the following command      keytool -list -v -keystore <your keyst...