सीधे मुख्य सामग्री पर जाएं

संदेश

मार्च, 2023 की पोस्ट दिखाई जा रही हैं

Splash screen in Android Studio source code | Splash screen android code ||

  Splash screen in Android Studio source code | Splash screen android code ! A splash screen is a graphical control element consisting of a window containing an image, a logo, and the current version of the software. A splash screen can appear while a game or program is launching. A splash page is an introduction page on a website. A splash screen may cover the entire screen or web page; or may simply be a rectangle near the center of the screen or page. The splash screens of operating systems and some applications that expect to be run in full screen usually cover the entire screen. Add the color in the colors.xml file as given: <color name="my_colour">#0E3746</color> Splash Activity Java Code: package com.example.splashactivityclass; import androidx.appcompat.app.AppCompatActivity; import android.content.Intent; import android.os.Bundle; import android.os.Handler; public class SplashActivity extends AppCompatActivity {     @Override     protected v...

Login Page Design in Android Studio using Xml || Ui Design In Android Studio Using Xml.

  Login Page Design in Android Studio using Xml || Ui Design In Android Studio Using Xml. What is a Login Page ? login page is a web page that prompts users to enter their login , such as a username and password, in order to gain access to a secure area of a application.Typically, the login page will verify the user's credentials against a database of authorized users and, if successful, grant the user access to their account or the protected content on the website or application.Login pages are commonly used on applications that require some level of authentication, such as email services, social media platforms, online banking  and e-commerce websites. They are an important security , helping to protect users' personal information and prevent unauthorized access to sensitive data Download background Image: Add the color in the colors.xml file as given: < color name="colour1"> #EFE5E5 </color>          ...