Tablelayout

BaabtraMentoringPartner 437 views 19 slides Nov 15, 2012
Slide 1
Slide 1 of 19
Slide 1
1
Slide 2
2
Slide 3
3
Slide 4
4
Slide 5
5
Slide 6
6
Slide 7
7
Slide 8
8
Slide 9
9
Slide 10
10
Slide 11
11
Slide 12
12
Slide 13
13
Slide 14
14
Slide 15
15
Slide 16
16
Slide 17
17
Slide 18
18
Slide 19
19

About This Presentation

Table layout in android


Slide Content

Disclaimer: This presentation is prepared by trainees of baabtra as a part of mentoring program. This is not official document of baabtra -Mentoring Partner. Baabtra -Mentoring Partner is the mentoring division of baabte System Technologies Pvt Ltd 10/11/12

TABLE LAYOUT IN ANDROID [email protected]

Table layout In a table layout, as the name suggests, all the controls are arranged  into rows and columns. Why Table layout? Table layouts can be used for displaying tabular data or neatly aligning screen contents in a way similar to an HTML table on a web page. It organizes user interface controls, or widgets, on the screen in neatly defined rows and columns. 10/11/12

Create layout XML Create new android project [File >> New >> Android Project] with project name TableLayout Click next and select target android device version [I chose version 2.3] Click next and enter package name – ‘ com.calicut.TableLayout ’ Click finish 10/11/12

By default main.xml will be created (can be found under /res/layout folder) when you create new project and the same is set as layout for the application using  setContentView ( R.layout.main ) method. Check the onCreate method in TableLayoutExample class to know about how the layout xml is set: 10/11/12

package com.calicut.tablelayout ; import android.app.Activity ; import android.os.Bundle ; public class TableLayoutActivity extends Activity { /** Called when the activity is first created. */ @Override public void onCreate (Bundle savedInstanceState ) { super.onCreate ( savedInstanceState ); setContentView ( R.layout.main ); }} 10/11/12

10/11/12

10/11/12

10/11/12

10/11/12

10/11/12

10/11/12

10/11/12

10/11/12

10/11/12

So you can see a layout as shown in the subsequent slide with distinct rows and columns. 10/11/12

10/11/12

Contact Us