Posts

Showing posts from 2020
Image
  Building Simple browser application in android studio :- To build browser application in android studio first we need to create new project in android studio, to know how to create project in android studio you can check from  here   Lets add Internet permission in manifest file : adding internet permission in manifest  < manifest xmlns: android ="http://schemas.android.com/apk/res/android" package ="com.sam.webviewdemo" > < uses-permission android :name ="android.permission.INTERNET" /> < 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 > ...
Image
  How to build torch light application in Android Studio :- To build torch light application in android studio first we need to create new project in android studio, to know how to create project in android studio you can check from  here   Lets add flashlight feature in manifest file: < uses-feature android:name ="android.hardware.camera.flash" />   Adding permission in manifest file  <? xml version ="1.0" encoding ="utf-8" ?> < manifest xmlns: android ="http://schemas.android.com/apk/res/android" package ="com.sam.torch" > < uses-feature android :name ="android.hardware.camera.flash" /> < 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 ...
Image
How to Create an Android Project in Android Studio:-   To create an android project in android studio first we need to download  ANDROID STUDIO IDE . Please make sure to maintain high internet connection while installing the IDE, Android studio will automatically download some files in the background, it is  suggested to maintain high internet connection while installing. After installation is completed and when you open the IDE (Android studio) will look like this  SCREEN  AFTER INSTALLATION OF IDE How to Create an Android Project in Android Studio Now Select start new Android Studio project How to Create an Android Project in Android Studio Now Select new empty activity and Click next How to Create an Android Project in Android Studio   Now enter the App name (Project name you want to create )  App name is the name of your app for example Instagram,whats app..what ever the name wil...