May 12, 2013

Addition of Two value - Android Development

0 comments
M
ost of the tutorials starts with "Hello World" applications for beginners to start with. In this article, I have jumped a step forward to come up with a bundle of tutorials which I hope will be useful for Android developers (beginners) to start with addition of two values.

Android has a such a great GUI beginners also can understand easily like me. If you are developing advance app for android its better to code in XML directly. Now let's move on a first step forward tutorial. I share source code of app below and i also shared .APK file of it which you can download from mediafire.

The Android Mania The Android Mania
A World Of Possiblities
Gratis   star on dark img The Android Maniastar on dark img The Android Maniastar on dark img The Android Maniastar on dark img The Android Maniastar on dark img The Android Mania
Application Requirement:
  • Android 2.3.3 up
Description:
  • It's just addition application.
Source Code Of My First Application
strings.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="app_name">Addition</string>
    <string name="hello_world">Hello world!</string>
    <string name="menu_settings">Settings</string>
    <string name="type_text">Type Text</string>
    <string name="sum">Sum</string>
    <string name="Null"></string>
</resources>
MainActivity.java
package com.android.addition;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;

public class MainActivity extends Activity {
int num1,num2,temp=0;
Button sum;
EditText text1,text2;
TextView ans;
String myAns;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
text1 = (EditText) findViewById(R.id.editText1);
text2 = (EditText) findViewById(R.id.editText2);
ans = (TextView) findViewById(R.id.textView1);
sum = (Button)findViewById(R.id.button1);
sum.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
num1 = Integer.parseInt(text1.getText().toString());
num2 = Integer.parseInt(text2.getText().toString());
temp = num1+num2;
myAns = Integer.toString(temp);
ans.setText("Your Total Is " + myAns);
}
});
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}
}


Read full post »

Mother's Day 2013 - Happy Mother's Day

0 comments
M
other's Day is a celebration honoring mothers and motherhood, maternal bonds, and the influence of mothers in society. It is celebrated on various days in many parts of the world, most commonly in March or May. It complements Father's Day, a similar celebration honoring fathers.

The celebration of Mother's Day began in the United States in the early 20th century; it is not related to the many celebrations of mothers and motherhood that have occurred throughout the world over thousands of years, such as the Greek cult to Cybele, the Roman festival of Hilaria, or the Christian Mothering Sunday celebration. Despite this, in some countries Mother's Day has become synonymous with these older traditions.

Also Read: Best apps for android on 14th feb Valentine Day

Wonderful pictures to set as your background to celebrate this special day " Mothers Day 2013 ". Mothers Day is one of the most important and valuable days in the year. So celebrate it by one of these amazingly stunning Mothers Day pictures.

Mother's Day 2013 Mother's Day 2013
vagondrake
   star on dark img Mother's Day 2013star on dark img Mother's Day 2013star on dark img Mother's Day 2013star on dark img Mother's Day 2013star on dark img Mother's Day 2013



Read full post »

May 7, 2013

Simple Money - Make HAPPY your wife

0 comments
S
imple Money is one of the most simple and convenient money managers (income\outcome manager). Application interface is very easy and intuitive. Application doesn't use the Internet.


Features

  • Two modes: balance or expenses only
  • Built-in calculator
  • Reports for outcome\income for day\week\month\year plus their detalization (up to categories)
  • Ability to create custom report for any date period
  • Clickable and convenient widget. If you click on icon then new transaction window opens; if you click on numbers then the application opens.
  • You can set widget numbers meaning in the application properties
  • Password protection: you can protect your data from unauthorized access (set password)
  • Export: you can export transactions journal to CSV format (exported file can be used in Excel to create custom reports)



Simple Money Simple Money
Simple Group
   star on dark img Simple Moneystar on dark img Simple Moneystar on dark img Simple Moneystar on dark img Simple Moneystar on dark img Simple Money
Read full post »

May 4, 2013

Beat your friend on Facebook with Angry birds Friends

0 comments
T
he game also syncs with your Facebook account and ensures you that your progress is saved, whether you play on your computer or on your smartphone. It’s your choice and all the progress will be saved
In this FREE new game, you can use your phone to challenge your Facebook friends for the title of ultimate pig popper and bird flinger! Play in weekly tournaments with your friends and see if you can snag the coveted bronze, silver and gold trophies. Plus, gather daily rewards, send and receive gifts, and brag about your accomplishments! And if you’re playing Angry Birds Friends on Facebook, your tournament progress will automatically be updated, so you can continue playing wherever you are!

Features

  • Tournaments with new levels every week!
  • Challenge your Facebook friends for bronze, silver, and gold trophies!
  • Brag, send gifts, and invite your Facebook friends to play!
  • Four classic power-ups, plus one exclusive to Angry Birds Friends on mobile!
  • Daily rewards!
  • Free bird-coins just for completing the tutorial!
  • Syncs automatically with your game on Facebook!


Angry Birds Friends Angry Birds Friends
Rovio Mobile Ltd
   star on dark img Angry Birds Friendsstar on dark img Angry Birds Friendsstar on dark img Angry Birds Friendsstar on dark img Angry Birds Friendsstar on dark img Angry Birds Friends
Read full post »