Posts

Showing posts from August, 2020

Sodium Valporate 200mg/5ml

Image
       Sodium Valporate Sodium valproate  is used to treat epilepsy and bipolar disorder. It's occasionally used to prevent migraine headaches. This medicine is only available on prescription. It comes as capsules, tablets and liquid  Composition  -  Syrup - 200mg/5ml   Class - Anti epileptic Drug Brand- Valprin Mechanism Of Action mechanism of action  of  valproate  is not fully understood, traditionally, its anticonvulsant effect has been attributed to the blockade of voltage-gated sodium channels and increased brain levels of gamma-aminobutyric acid (GABA). Dosage Children - 10-15mg/kg/day (16mg/kg/day  reference DDH)                       20mg/kg/day Standard dose as per Doctor  Used As Anti epileptic, Status epilepticus Co ntraindicated - Pregnancy, Lactation 

Changing Colour Code in Color Xml in Android Studio

Image
Today we will understand to change colour codes in Android Studio.we will learn how to change background, dark primary And Primary colour. 1) Go to colour xml and you will find following codes. <? xml version ="1.0" encoding ="utf-8" ?> < resources > < color name ="colorPrimary" >#6200EE</ color > < color name ="colorPrimaryDark" >#3700B3</ color > < color name ="colorAccent" >#03DAC5</ color > </ resources > Colour code for Primary is #6200EE Colour code for Primary Dark is #3700B3

Removing title head from App in Android Studio

Image
Today we are going to demonstrate how to remove title head from Android App. As you are seeing pic we want to remove RX Title Head from App. For doing that we have to change some settings in our Project in Android Studio. 1) In Style xml change < style name ="SplashTheme" parent ="Theme.AppCompat.Light.ActionBar" > To the following code. < style name ="SplashTheme" parent ="Theme.AppCompat.Light.NoActionBar" > Just need to write Light. No ActionBar Whole code is following....... < resources > <!-- Base application theme. --> < style name ="AppTheme" parent ="Theme.AppCompat.Light.NoActionBar" > <!-- Customize your theme here. --> < item name ="colorPrimary" >@color/colorPrimary</ item > < item name ="colorPrimaryDark" >@color/colorPrimaryDark</ item > < item name ="colorAccent" >@color/colorAccent</ item > <...

Splash Activity in Android Studio

Image
Today Topic is About App Devlopmant and we are creating first Page of Android App which is called Splash Screen Step 1 Select empty activity in android studio for New Project Step 2 Name the App name whatever you want Step 3 After Loading of Gradle, Right Click on Java ,then Select New and search for Activity Button and then Select empty Activity. Step 4 Name the empty Acticity to Be Splash Activity JUST COPY THE CODES BELOW TO YOUR ANDROID PROJECT For any Query Ask me in Comment Box Thank You........ Codes are Given Below for Splash_activity xml, Splash_background xml Splash_activity Java etc... Mipmap Add Image or logo to Mipmap Splash_activity xml Blank......................... Manifest File <? xml version ="1.0" encoding ="utf-8" ?> < manifest xmlns: android ="http://schemas.android.com/apk/res/android"     package ="com.e.mint" >     < application         android :allowBackup ="true"    ...