Found 1631 Articles for Android

Mobile Reviews: Xiaomi MI Note 2 and Samsung Galaxy C7

Sharon Christine
Updated on 17-Jan-2020 10:13:00

47 Views

Review of Xiaomi MI Note 2Xiaomi Mi phones are affordable Chinese phones launched to give us all the classy features of a stylish smartphone within our budget. Xiaomi, like always, is going to hit the market with its brand new phone – Mi Note 2, and going to be a tough competition to beat. Xiaomi Mi Note 2 has already created a buzz before its launch and took all its competitors by surprise, especially, Samsung Galaxy S7 Edge and iPhone 6 plus. As heard. it has all the best features in affordable price. It is a thin and a light ... Read More

Top 10 Free Android Games

Sharon Christine
Updated on 13-Jan-2020 11:43:20

171 Views

I bring to you the best free android games . If you like them all, well , you can download them all, after all I did mention that these were FREE! Not all of them are the latest one’s you can download today, but the emphasis has been on popularity and amazing game play experiences across these games.Dungeon Hunter 5The Dungeon Hunter 5 gets very interesting as you can get spellcrafting, boss-fighting, and leveling-up in this new release. In comparison to previous version, it has many new features; among them, ‘Strongholds’ is the most exciting one. You can build a ... Read More

Tips to Increase Internet Speed without 4G Connection

Sharon Christine
Updated on 27-Apr-2022 06:50:48

248 Views

Web Browsing is an integral part of owning a smartphone or tablet. Slow Internet browsing and downloading speeds are something everybody wants to improve – as no one enjoys staring at the rotating wheel of a loading video. The bad speed of mobile internet may occur due to several reasons like bad signal strength, congestion and load in network etc.With the 4G connection, this obstacle can be overcome to some extent but getting a high-speed internet data plan doesn’t necessarily means that you will get the exact or fast speed as provided by the company. So if you are suffering ... Read More

Top 5 Tools to prototype iOS and Android apps without coding

Sharon Christine
Updated on 14-Jul-2020 06:04:37

341 Views

Advancements in technology have rendered the world digital and drives mankind to experience new wonders of astronomical proportions. Internet has moved us from relative absurdity to a path filled with clarity. Two of the many promising wonders of modern digital technology are the endearing fields of website development and mobile app development.What is Prototyping?Prototyping allows you to create a prototype version of your website/app without actually coding anything. Such prototypes can be used to create a basic functional model of the application, get initial feedback, give demos, experiment with UI/UX, etc.Prototyping is undoubtedly one of the many important stages of ... Read More

Google’s Relationships Based Voice Search on Android

Sharon Christine
Updated on 13-Jan-2020 10:08:05

87 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

How to add a shadow and a border on circular imageView android?

Azhar
Updated on 26-Nov-2019 09:59:21

657 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

How to bind data from a database to an Android CheckBox in a ListView?

Azhar
Updated on 26-Nov-2019 09:55:30

725 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

How to make a GridLayout fit screen size in Android?

Azhar
Updated on 09-Jul-2020 12:07:43

1K+ 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

How to Justify Text in TextView in Android?

Azhar
Updated on 26-Nov-2019 09:45:20

535 Views

This example demonstrates how to Justify Text in TextView on 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 res/layout/list_item.xml             Step 4 − Add the following code to src/MainActivity.javapackage com.app.sample; import androidx.appcompat.app.AppCompatActivity; import androidx.recyclerview.widget.LinearLayoutManager; import androidx.recyclerview.widget.RecyclerView; import android.os.Bundle; import java.util.ArrayList; import java.util.List; public class MainActivity extends AppCompatActivity {    private final String TAG = "MainActivity";    private ... Read More

How to detect user inactivity for 5 seconds in Android?

Azhar
Updated on 26-Nov-2019 09:37:18

1K+ Views

This example demonstrates how to detect user inactivity for 5 seconds 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.os.Handler; import android.widget.Toast; public class MainActivity extends AppCompatActivity {    Handler handler;    Runnable r;    @Override    protected void onCreate(Bundle savedInstanceState) {       super.onCreate(savedInstanceState);       setContentView(R.layout.activity_main);       handler = ... Read More

Advertisements