Posts

Showing posts from 2015

ONLINE VOTING SYSTEM

Image
PROTOTYPE OF OVS ANDROID APPLICATION HOME SCREEN VOTER LOGIN SCREEN USER REGISTRATION ACTIVITY API SCREEN

HELLO WORLD CODING ON ANDORID

DISPLAY HELLO WORLD CODES CREATE LINEAR LAYOUT Create or Update the template layout, Relative Layout to the following Code. ===>>src/main/res/layout/ activity_home.xml <LinearLayout android:orientation="vertical" android:layout_height="match_parent" android:layout_width="match_parent" > <TextView android:layout_height="wrap_content" android:layout_width="wrap_content"  android:textColor=" @android:color/black" android:textSize="50sp" android:text="@string/hello_world"/> </LinearLayout> CREATE ACTIVITY Create or Update the template java Class. ==>> src/main/java/package-name/ HomeActivity.java Change ActionBarActivity to Activity for extended class for java class HomeActivity public class HomeActivity extends ActionBarActivity {  @Override  protected void onCreate(Bundle savedInstanceState) {  super.onCr...

FOODCOURT ANDROID APP.

FIRST ANDROID APP CODING ANDROID APP FOODCOURTS NOW I M GOING TO START APP AND CREATE FIRST ACTIVITY AND THE NAME IS HOME.ACTIVITY AND THE ALL THE STEPS IS OVER HERE. Create Linear Layout for Home Activity Create Relative Layout & set Attributes Create Action Bar via Relative Layout Understand Design Basics for Action Bar Image Button & Its Attributes Handling Click Event Add Comments CREATE LAYOUT : ( activity_home.xml ) CREATE ACTION BAR  <RelativeLayout android:layout_height="56dp"  android:layout_width="fill_parent" android:background="#7D26CD"  android:layout_margin="1dp"> <TextView android:layout_height="wrap_content"  android:layout_width="wrap_content" android:id="@+id/textView"   android:layout_centerHorizontal="true" android:layout_centerVertical="true"  android:textColor="#FFFFF0" android:textS...

ANDROID APP...(SRS)

FIRST ANDROID APP SOFTWARE REQUIREMENT SPECIFICATION(SRS) NOW WE ARE GOING TO CREAT FIRST ANDROID APP. AND OUR FIRST ANDROID APP IS FOODCOURTS AND HERE IS SRS OF THIS APP.  PROJECT REQUIREMENT: FoodsCourt: FoodsCourt is a global Food Chain serving in more than 1 5 countries round the world. We have number of products available for our valued customers. We are facilitating our customers with online orders. It’s the great demand from our customers to make an app for their smartphones. Now we have selected your organization to develop an app first for Android. We require the following features in the app: ● The product list display which is available for customers. ● The branches show on the Google Map. ● The messages and notification received which send from server. ● The organization information update dynamically. ● The user information store in app useful during ordering. ● The user may contact via SMS or Phone, Email or ...

ANDROID APP. PROGRAMMING

Image
FIRST ANDROID APP. LESSON #1 FIRST WE DISCUSES ENVIRONMENT: FOR UNDERSTAND ANDROID CODE AND APP. DESIGN FIRST WE NEED TO UNDERSTAND SOFTWARE REQUIREMENT SPECIFICATION (SRS). The Key Steps…. Understand the SRS (Software Requirement Specification) of client. Then plan how to facilitate the client requirement in the app. Afterwords, sketch the screen as per your understanding of project.  SRS (Software Requirement Specification) It is a complete document which includes…… ● The Company Portfolio ● The requirement ● All the related detail to describe about & for  project. Sketching & Wireframing Wireframing, a step in design whereto start  layout your screen. Easiest and fastest way is to sketch. After number of tries finalize the sketch. Then make the Digital Wireframing for Adobe  Illustrator, Abode Fireworks, JustInMind etc. Prototype  Prototype sample/model to test a concept  l...