Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Apps/Applications Articles - Page 62 of 196
132 Views
The top most company in the world – Google announced on its Google+ page that the latest version of voice search command is available which is based on relationships. This voice search command enhances its voice-recognition feature and allows user to make calls, send messages, and search using voice commands.Google has given this interesting feature to Android. That’s why, Android now available with relationship based – voice search command feature which facilitates Android user to make calls and sending messages directly via voice commands for contacts that have been associated with their relationship to the user. In other word, Android ... Read More
151 Views
It usually happens that when somebody is sleepy their mobile phones becomes inactive, which reflect millions of strength-full processors become idle for that interval of time. Samsung newly collaborated with University of Vienna to create a unique alarm clock app called Power Sleep. Power Sleep is a latest Android app that permits mobile phone users to give the processing power of their devices to scientific research at the time of sleeping.Power Sleep lets people donate small bits of their mobile CPU power, so that a large “supercloud computer” can use that power for a scientific research on curing diseases such ... Read More
178 Views
Microsoft has officially renamed Office Web Apps as Office Online which includes the online versions of its popular Word, PowerPoint and Excel apps, using this user can find their free online experience. Also, name “SkyDrive” has become “OneDrive”. The new name doesn’t come up with lots of new features, but there are some changes that come with renaming.Just visit the Office.com site: https://www.office.com/start/default.aspx, and start using the Microsoft Word Online, Excel Online, PowerPoint Online and OneNote Online. Users just need a Microsoft Account(available with any email address) to use the Office Online. After creating a Microsoft Account, just log in, ... Read More
356 Views
In this post we will be seeing how to prevent screen from sleeping in iOS.So, let’s get started.Copy the below line of code in viewDidLoad method in ViewController.Swiftoverride func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view, typically from a nib. UIApplication.shared.isIdleTimerDisabled = true }Run the application, the application will never go in sleep mode.
351 Views
In this post we’re going to see how one can use tab bar layout in their application.As per apple’s documentation −A tab bar appears at the bottom of an app screen and provides the ability to quickly switch between different sections of an app. Tab bars are translucent, may have a background tint, maintain the same height in all screen orientations, and are hidden when a keyboard is displayed. A tab bar may contain any number of tabs, but the number of visible tabs varies based on the device size and orientation.You can read more about the same herehttps://developer.apple.com/design/human-interface-guidelines/ios/bars/tab-bars/So let’s ... Read More
1K+ Views
Being a software developer we should be always aware of how to play with files, write to a file, read from the file and so on.In this post we are going to learn the same, we will be creating a file and writing the data to the file and later reading through the same file.So let’s get started, Step 1 − Create new Xcode Project → Single View Application → name it “ReadingWritingFile”Step 2 − Open ViewController.swift and add new function as show belowpublic func createAndWriteFile() { }Now we will create a file and will print the path of the ... Read More
883 Views
This example demonstrates how to add a shadow and a border on circular imageView androidStep 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml. Step 3 − Add the following code to src/MainActivity.javapackage com.app.sample; import androidx.appcompat.app.AppCompatActivity; import androidx.core.graphics.drawable.RoundedBitmapDrawable; import androidx.core.graphics.drawable.RoundedBitmapDrawableFactory; import android.content.Context; import android.content.res.Resources; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.ImageView; import android.widget.RelativeLayout; import android.os.Bundle; public class MainActivity extends AppCompatActivity ... Read More
899 Views
This example demonstrates how to bind data from a database to an Android CheckBox in a ListView.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml. Step 3 − Add the following code to res/layout/row_item.xml. Step 4 − Add the following code to src/MainActivity.javapackage com.app.sample; import androidx.appcompat.app.AppCompatActivity; import android.view.View; import android.widget.AdapterView; import android.widget.ListView; import java.util.ArrayList; import android.os.Bundle; public class MainActivity extends AppCompatActivity { ArrayList dataModels; ListView ... Read More
2K+ Views
This example demonstrates how How to make a GridLayout fit screen size in Android.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml. Step 3 − Add the following code to src/MainActivity.javapackage com.app.sample; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.view.Gravity; import android.widget.GridLayout; import android.widget.ImageView; ... Read More