• HOME
  • VIDEO
  • COURSES
    • Java Expertise
      • Java SE(Core)
      • Java EE(Advance)
      • Servlet & JSP
      • EJB & Web Services
      • JMS & Java Mail
    • Java Framework Expertise
      • Spring Framework
      • Spring MVC
      • Hibernate Framework
      • Struts/Struts2 Framework
      • JSF
    • Mobile Expertise
      • Android
      • PhoneGap
      • HTML5
      • Bootstrap
    • Training Options
      • MCA Industrial Training
      • Corporate Training
      • Internship Programs
      • Online Training
      • Major and Minor Project Training
      • Project Work (Live Project)
    • PHP Expertise
      • PHP Core
      • PHP Advanced
      • WordPress
      • Drupal
    • Web Designing Expertise
      • HTML
      • JavaScript
      • Jquery
      • AJAX
    • Others
      • MySQL
      • Software Testing
      • XML Technologies
      • Agile Methodology
  • ABOUT
  • INSIGHTS
    • Column 1
      • Testimonials/Reviews
      • Share your feedback
      • Placement
      • Career
      • News & Events
      • Project Topics – reference
      • Site Map
      • Terms and Conditions(Global)
    • Column 2
      • Registration
      • Login
      • Inquiry
      • Please Call or Fill Enquiry Detail Below
      • Video Library – Free
      • Official Website
      • Business Blog
  • BLOG
    • Column 1
      • Java SE
      • Java EE
      • Spring Framework
      • Hibernate
      • Struts
    • Column 2
      • Android
      • Project Work
      • AJAX
      • JQuery
  • CONTACT
A Training Division of eZeon Technosolutions Pvt. Ltd.
Contact
Pay & Registration
EZEON - Training Division | Best For Java | Spring Framework | Spring Boot | Android | Major/Minor Projects | Live Projects | Internship |  Python |  Flutter | artificial intelligence | Bhopal EZEON - Training Division | Best For Java | Spring Framework | Spring Boot | Android | Major/Minor Projects | Live Projects | Internship |  Python |  Flutter | artificial intelligence | Bhopal
  • HOME
  • VIDEO
  • COURSES
    • Java Expertise
      • Java SE(Core)
      • Java EE(Advance)
      • Servlet & JSP
      • EJB & Web Services
      • JMS & Java Mail
    • Java Framework Expertise
      • Spring Framework
      • Spring MVC
      • Hibernate Framework
      • Struts/Struts2 Framework
      • JSF
    • Mobile Expertise
      • Android
      • PhoneGap
      • HTML5
      • Bootstrap
    • Training Options
      • MCA Industrial Training
      • Corporate Training
      • Internship Programs
      • Online Training
      • Major and Minor Project Training
      • Project Work (Live Project)
    • PHP Expertise
      • PHP Core
      • PHP Advanced
      • WordPress
      • Drupal
    • Web Designing Expertise
      • HTML
      • JavaScript
      • Jquery
      • AJAX
    • Others
      • MySQL
      • Software Testing
      • XML Technologies
      • Agile Methodology
  • ABOUT
  • INSIGHTS
    • Column 1
      • Testimonials/Reviews
      • Share your feedback
      • Placement
      • Career
      • News & Events
      • Project Topics – reference
      • Site Map
      • Terms and Conditions(Global)
    • Column 2
      • Registration
      • Login
      • Inquiry
      • Please Call or Fill Enquiry Detail Below
      • Video Library – Free
      • Official Website
      • Business Blog
  • BLOG
    • Column 1
      • Java SE
      • Java EE
      • Spring Framework
      • Hibernate
      • Struts
    • Column 2
      • Android
      • Project Work
      • AJAX
      • JQuery
  • CONTACT

Archive


Category Archive for "Android"

1

Free Training Video Session by EZEON

Jan 12, 2017

DEAR STUDENTS! YOU ASKED FOR MY JAVA TRAINING VIDEO ONLINE. YOU ENCOURAGE ME TO WORK MORE AND FINALLY I PREPARED A GREAT VIDEO SERIES FOR YOU, I HOPE YOU ENJOY IT. NOTE : WATCH THESE VIDEOS IN 480p OR HIGHER QUALITY FOR BETTER CLARITY. ALSO WATCH IN FULL SCREEN MODE. OOPS Concept Introduction – (Language […]

2

Develop Simple Form Android Activity

Jul 15, 2014

Here we develop a simple form application and handle click event on button.   Layout File: res/layout/activity_calc.xml CalcActivity.java

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package in.ezeon.app;
import android.os.Bundle;
import android.app.Activity;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
public class CalcActivity extends Activity {
    //component declaration
    EditText etA, etB;
    Button btnSum;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_calc);
 
        //initialize components
        etA=(EditText) findViewById(R.id.etA);
        etB=(EditText) findViewById(R.id.etB);
        btnSum=(Button) findViewById(R.id.btnSum);
 
        //add or register listener to button
        btnSum.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
//Handle the task on button click here.
//read data from input field
Integer a=new Integer(etA.getText().toString());
Integer b=new Integer(etB.getText().toString());
int sum=a+b;
Toast.makeText(CalcActivity.this, "Sum: "+sum , Toast.LENGTH_LONG).show();
}
});        
    }
}

android.widget.Toast: Toast is an object to display popup message. It appears for small duration and closed automatically. It is usually used to display action messages like – Contact Saved. – Contact Deleted. – Email Sent Successfully. […]

3

Developing First Android Application – Step by Step

Jul 15, 2014

Before moving below steps we assume that Eclipse ADT is already installed in your system and developer is familer with basic IDE features. 1. Create New Android Application Project File–>New–>Android Application Project Provide necessary detaiils as shown in screens below.       After project creation you will see a window as below. Project/Package Explore […]

4

Android Development Environment

Jul 15, 2014

Android SDK(Software Development Kit): Android SDK contains libraries and tools(compiler, debugger, build tool etc) required to develop android applications. We can use ADT(Android Development Tools) plugin for Eclipse to develop Android applications. There is a common package available for download which contains ADT features , required libraries and Eclipse IDE. This package is also known […]

5

Android Overview

Jul 15, 2014

Android is an operating system based on the Linux kernel. The Android system supports background processing, provides a rich user interface library, supports 2-D and 3-D graphics, File System Access and inbuilt SQLite database. Android system also contains Application Framework to develop Android Apps. Its development framework is based on Java Programming Language. Android is […]

  • 1
  • 2


Recent Posts

  • Spring Framework and Hibernate Workshop
  • Free Training Video Session by EZEON
  • 10 Great Benefits to Choose Spring Web MVC Framework
  • Spring Web MVC Framework Tutorial – Best from Experts
  • MySQL Queries for Beginner – Quick Start

Categories

  • AJAX
  • Android
  • Cloud Computing
  • Database
  • Hibernate
  • HTML
  • Interview Questions
  • Java EE
  • Java SE
  • JavaScript
  • JQuery
  • JSP
  • Miscellaneous
  • Project Work
  • Servlet
  • Spring Framework
  • Spring Workshop
  • Struts
  • Video Library
  • Web Services
Learn from the Experts and Experience Best Practices of Software Industry

Please write us today

Get In Touch
EZEON is a Software Development Company wish to share our Experience with Students, Developers and Companies to help them in adopting best practices. Its our small contribution towards skill development initiative

© 2023 - eZeon Technosolutions Pvt. Ltd.

  • Home
  • About
  • Courses
  • Blog
  • Site Map
  • Terms & Conditions