Posts

LINUX: How to Remove Grub

Image
After many failed attempts of dual boot your PC, you may want to start it with whole new process. Remove GRUB boot loader from Windows: Follow the following steps below to remove grub boot loader from Windows Step 1: Clean booted  partition. Open "Disk Management" tool in your Windows machine. Right click on the partition in which you have install Linux partition and then click on "Format " or "Delete Partition". Step 2: Open Command Prompt("Run As Administrator"). After, successful format of the Linux partition. Search for "cmd" right click on it and choose "Run As Administrator". Avoid using "PowerShell" for this process as many command will not work properly. Step 3: Diskpart To select the partition having grub bootloader sometime you may have to use hit and trial, but generally you will find it (fs => "FAT32" and info => "Hidden"). Step 4: Re

Android Studio: Adding two numbers (Java Code)

Image
ANDROID APP FOR ADDING TWO NUMBERS (JAVA CODE) In this blog we are going to learn about the Android App, for adding two number. "AndroidManifest.xml" <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.myapplication"> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme"> <activity android:name=".MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </

Android Studio: Basics of Android Studio

Image
-------INTERNAL DETAILS OF ANDROID PROJECTS-------- Firstly we are going to learn about the "AndroidManifest.xml" file. Regardless of any project you create it must contain manifest file in it. Android Manifest is one of the most important file for the working of android project. You should must configure the manifest file correctly to get desired output, otherwise it throws lots of errors. It may leads to fail locating further activity. In manifest you can also order the activities, and also set the first activity which will launched as app launched. <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.jessicathornsby.myapplication"> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon=&qu

Android Studio: Creating Android Studio Project

Image
Now, In this blog we are going to learn How To Create Android Studio Project. Creating Android Studio Project         Step 1: Double click on Android Studio and then select "Start a new Android Studio Project"....    Step 2: Now here you have to select between various activities according to the requirements of your project but I still prefers to choose "Blank Activity". By choosing "Empty Activity" you can easily modify your project easily. Then click on "Next".. Step 3: Here, on this page you set name of your project, location to save your project then language, in language you can select between "JAVA and Kotlin" then you have to select "Minimum API level".... Step 4: "Project Created"