1 / 12

INTRODUCCIÓN A:

INTRODUCCIÓN A:. ¿Qué es android ?. Android es un Sistema Operativo además de una plataforma de Software de código abierto,  basada en una versión modificada del núcleo de Linux para dispositivos móviles, como teléfonos inteligentes y tablets. ¿Qué es android ?.

minna
Download Presentation

INTRODUCCIÓN A:

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. INTRODUCCIÓN A:

  2. ¿Qué es android? Android es un Sistema Operativo además de una plataforma de Software de código abierto,  basada en una versión modificada del núcleo de Linux para dispositivos móviles, como teléfonos inteligentes y tablets.

  3. ¿Qué es android? El programa de desarrollo de Android,  provee las herramientas e interfaces de programación necesarias para el desarrollo de aplicaciones Android usando el lenguaje de programación Java.

  4. Aspectos Clave Vistas (View): Son elementos que componen la interfaz de usuario. Se definen en un archivo XML similar a lo que sería la definición de una página web en HTML. Actividad (Activity):Suele representar una pantalla de la aplicación, por lo que suelen utilizarse varias actividades en la creación de una interfaz de usuario.

  5. Aspectos Clave Intento (Intent):Suele representar la intención de realizar algo como: realizar una llamada de teléfono, visualizar una página web. Actividad (Service): es un proceso que se ejecuta “detrás”, sin la necesidad de una interacción con el usuario.

  6. Layouts (contenedor de vistas) LinearLayout: Dispone los elementos en una fila o columna. <LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <TextView …/> <CalendarView …/> <AnalogClock …/> <CheckBox …/> </LinearLayout>

  7. Layouts (contenedor de vistas) TableLayout: Distribuye los elementos en forma tabular. <TableLayoutxmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <TableRow> <TextView …/> <CalendarView …/> </TableRow> <TableRow> <AnalogClock …/> <CheckBox …/> </TableRow> </TableLayout>

  8. Layouts (contenedor de vistas) RelativeLayout: Dispone los elementos en relación a otro o al padre. <RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <TextView … android:layout_alignParentTop=“true”/> <CalendarView … android:layout_below=“@+id/AnalogClock01”/> <AnalogClock … android:layout_below=“@+id/CheckBox01”/> <CheckBox …android:layout_alignParentBottom=“true”/> </RelativeLayout>

  9. Layouts (contenedor de vistas) AbsoluteLayout: Posiciona los elementos de forma absoluta. <AbsoluteLayoutxmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <TextView … android:layout_x=”50px” android:layout_y=”50px” /> <CalendarView … android:layout_x=”150px” android:layout_y=”50px” /> <AnalogClock … android:layout_x=”50px” android:layout_y=”250px” /> <CheckBox … android:layout_x=”150px” android:layout_y=”200px” /> </AbsoluteLayout>

  10. Layouts (contenedor de vistas) FrameLayout: Permite el cambio dinámico de los elementos que contiene. <FrameLayoutxmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <TextView …/> <CalendarView …/> <AnalogClock … android: visibility=“invisible”/> <CheckBox … android: visibility=“invisible”/> </FrameLayout>

  11. Layouts (contenedor de vistas) FrameLayout: Permite el cambio dinámico de los elementos que contiene. <FrameLayoutxmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <TextView …/> <CalendarView …/> <AnalogClock … android: visibility=“invisible”/> <CheckBox … android: visibility=“invisible”/> </FrameLayout>

  12. GRACIAS

More Related