Showing posts with label club. Show all posts
Showing posts with label club. Show all posts

Monday, May 29, 2017

Download BBM Mod Football Club BBM Mod Chelsea

Download BBM Mod Football Club BBM Mod Chelsea


Create “Hello World” application. That will display “Hello World” in the middle of the screen in the
red color with white background.

Click Below Link to download Hello World Application. Although i recommend you to read below steps to understand how to develop Android Application

Download Hello World Android Application

Create Hello World Application follow these basic steps. Below Steps are after the configuration of SDK Manager and eclipse.
STEP 1
Start Eclipse and Choose Workspace where you want to save your project

STEP 2 
Click on the file menu -> Select New -> Choose Android Project
 New Android Project Dialog will displayed and fill the required information and click on the finish button



Here In Above Dialog box Create Activity is the name of class you want to specify for your default Activity which will be loaded first when Hello World Example will be executed.


STEP 3
From the Project explorer click on the HelloWorld  -> res - > layout. it will show the main.xml inside layout folder. double click on the main.xml. By clicking on main.xml it will show something like.

Drag the Text View Control from  left panel to black box. and click on the main.xml tab show bottom left near Graphical Layout. now the main coding or designing part starts.

Main.xml file content for Hello World Example

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    android_orientation="vertical"
    android_layout_width="fill_parent"
    android_layout_height="fill_parent"
    android_background="#999">
 
    <TextView
        android_layout_height="fill_parent"
        android_text="Hello World"
        android_textColor="#900"
        android_id="@+id/textView1"
        android_layout_width="fill_parent"
        android_gravity="center_vertical|center_horizontal">
    </TextView>


</LinearLayout>

STEP 4
When you drag  control to Graphical Layout  in background it will generate the xml code appropriate to those control. In our Example we have dragged TextView Control so here we can see the TextView tag. and LinearLayout tag. LinearLayout is the default layout which hold the View Control as well other Layout if you want to specify for your design.



TextView

We have android:text = "Hello World"  attribute which show the text to screen. here we have specified "Hello World".

android:textColor="#900"  you can specify the Text Color in RGB format RED , GREEN and BLUE.
android:layout_height="fill_parent"  TextView Control Height would be equal to the height of its parent control. in our example parent is LinearLayout. same thing would be applied to android:layout_width

android:gravity="center_vertical|center_horizontal"   you can specify the alignment of the control

LinearLayout

android:background="#999"   We have Specified the Background color of LinearLayout to White Color

STEP 5
Click on the run  to execute our Hello World Application Example.


Download Hello World Android Application

Go to link download

Read more »

Tuesday, April 25, 2017

PUNCH CLUB APK MOD V1 12 DOWNLOAD GRÁTIS!!!

PUNCH CLUB APK MOD V1 12 DOWNLOAD GRÁTIS!!!



Seu pai foi assassinado brutalmente diante dos seus olhos. Agora você deve treinar com tudo, comer frango, dar um cacete numa galera pra conquistar seu lugar na classificação do Punch Club e descobrir quem matou seu pai. Punch Club é um sistema de gestão de carreira de boxe com múltiplas possibilidades de enredo. Seu objetivo é claro, mas como você chega lá depende de você. Seja trilhando o caminho do bom moço, dentro da lei, ou pegando a duvidosa estrada sombria.

 
 


Download PUNCH CLUB APK




Go to link download

Read more »

Tuesday, March 21, 2017

Download BBM Mod Barcelona BBM Mod Football Club

Download BBM Mod Barcelona BBM Mod Football Club


Using Intent Change One Activity to another Activity and also pass Main Activity Username to sub activity and display in Sub Activity
Program no 2

a)  Create Sample Application With login module. (Check Username and Password)
b)  On Successful Login , go to next Screen , And on Failing login , alert user using Toast. Also Pass Username to next Screen.

Below android program will ask you to enter username and password and a button to submit the text to next screen.

when you press the submit button the username you have entered in the edittext view will be passed to the sub activity.

to create such application you need to use startActivity and pass the intent object which will start sub activity. and add the putExtra method to Pass value along with the activity

from the sub activity page you need to use getintent() to get the last intent which will return the intent refrence.

from the specified intent reference you call the appropriate get method to access the value in sub activity page

Download Activity and Sub Activity Example

Your Comment are most Welcome. if you find any difficulty in this you can  comment us

Go to link download

Read more »