Navigation drawers comes with mesmerizing access to destinations, functionality, switching collapsing tabs. Tabs can either be permanently on-screen or controlled by a navigation menu icon. Navigation drawers are consumed for: Apps with five or more...
Can’t view SQLite database on device in (Android Device Monitor) in Android studio
SQLite database SQLite database engine implements a small, fast, self-contained, high-reliability, full-featured, . SQLite is one the most used database engine and is a C-language library. It is built into all mobile phones and most computers. The main package is...
How to Add Roboto Font on Your Android Project
Here is the few steps to solve it: 1. Go to the android to project folder 2. Then goto app -> src -> main 3. Create two directory assets then fonts into the main folder. 4. Download your custom font ,I use Roboto Font link:...
Required import android.support.v4.app.Fragment; in Android Studio
Tips: just you need to use import android.app.Fragment; Then, Change it to import android.support.v4.app.Fragment; for more help see videos. https://www.youtube.com/watch?v=8bSkludFfG0
How to download and install android studio (latest)
How to download and install android studio. Firstly you have to know either your pc already installed jdk software or not. If not then click the link https://www.oracle.com/java/technologies/javase-jdk16-downloads.html and below the "Windows x64 Installer(if...
Android Studio : Application won’t run unless you update google play services
Application won't run unless you update google play services. https://www.youtube.com/watch?v=2vd0t399IGs&t=25s Make sure you add the map Some requirements shown in this Tutorial https://www.youtube.com/edit?o=U&vide... Then , In order to update google...
Android Studio: Use Navigation Drawer with Tabs
Use Navigation Drawer with Tabs in Android. Navigation drawers provide access to destinations and app functionality, switching tabs. Tabs can either be permanently on-screen or controlled by a navigation menu icon. Navigation drawers are consumed for, with five or...
Chapter 4 Relational Algebra
Relational Algebra The part of mathematics in which letters and other general symbols are used to represent numbers and quantities in formula and equations. Ex: (x + y) · z = (x · z) + (y · z). The main application of relational algebra is providing a theoretical...
Chapter 3 Components of the Database System Environment
Components of the Database System Environment There are five major components in the database system environment and their interrelationships are. Hardware Software Data Users Procedures Hardware: The hardware is the actual computer system used for keeping and...
Database basic overview
What is DBMS? A Database Management System (DBMS) is a collection of interrelated data and a set of programs to access those data. Database management systems (DBMS) are computer software applications that interact with the user, other applications, and the database...
Laravel – Scopes (3 Easy Steps)
Scoping is one of the superpowers that eloquent grants to developers when querying a model. Scopes allow developers to add constraints to queries for a given model. In simple terms laravel scope is just a query, a query to make the code shorter and faster. We can...