SlideShare a Scribd company logo
Pemrograman Mobile
3 SKS | Semester 7 | S1 Sistem Informasi
Nizar Rabbi Radliya
nizar.radliya@yahoo.com
Pertemuan 2
Universitas Komputer Indonesia | 2016
nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016
nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016
 Activity
 Service
 Content Provider
 Resource
 Views
 Notification
nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016
Versi Android
nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016
Persiapan Perangkat Pemrograman Android
 Java JDK
 Android SDK
 IDE Eclipse
 Android ADT
nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016
Instalasi Paket Java JDK
Link download:
http://www.oracle.com/technetwork/java/javase/downloads/jdk8-
downloads-2133151.html
nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016
Instalasi Paket Java JDK
Deskripsi fitur, pemilihan fitur, dan penentuan lokasi instalasi
nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016
Instalasi Paket Java JDK
Termasuk instalasi pake java JRE
nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016
Instalasi Paket Java SDK
Link Download:
https://developer.android.com/sdk/index.html
Tersedia untuk sistem operasi Windows, Linux, Mac OS.
nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016
Level API setiap Versi Android
nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016
Penggunan versi android di Pasaran
https://developer.android.com/about/dashboards/index.html
nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016
Membuat AVD pada SDK sebagai emulator
nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016
Membuat AVD pada SDK sebagai emulator
nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016
Membuat AVD pada SDK sebagai emulator
nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016
Instalasi IDE Eclipse
Link download:
https://eclipse.org/downloads/index-developer.php
Setelah selesai diunduh lalu ekstrak dan sudah siap untuk
digunakan.
nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016
Instalasi ADT pada IDE Eclipse
Link download:
http://developer.android.com/sdk/installing/installing-adt.html
Download ADT plugin dari eclipse menu Help>Install new software.
nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016
Instalasi ADT pada IDE Eclipse
https://dl-ssl.google.com/android/eclipse/
nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016
Mereferensikan Java SDK pada IDE Eclipse
nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016
Hello World pada Android
nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016
Hello World pada Android
nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016
Hello World pada Android
nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016
Hello World pada Android
nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016
MainActivity.java
package com.is.helloworld;
import android.app.Activity;
import android.os.Bundle;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle
savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016
activity_main.xml
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.is.helloworld.MainActivity" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
</RelativeLayout>
nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016
string.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">HelloWorld</string>
<string name="hello_world">Hello world! Hai, ini
program Android pertama saya</string>
<string name="action_settings">Settings</string>
</resources>
nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016
Hasil Run menggunakan AVD
nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016
Struktur Project Aplikasi Android
src/
gen/
Android 4.4.2/
assets/
bin/
libs/
res/
drawable-hdpi
drawable-ldpi
drawable-mdpi
drawable-xhdpi
drawable-xxhdpi
layout
values
style.xml
string.xml
---------------------------
Android Manifest dan Project
Properties
Pemrograman Mobile
3 SKS | Semester 7 | S1 Sistem Informasi
Nizar Rabbi Radliya
nizar.radliya@yahoo.com Materi Pertemuan 3
Universitas Komputer Indonesia | 2016
Activity dan Intent:
1. Pengenalan activity
2. Activity life cycle
3. Pengenalan intent
4. Penggabungan activity dengan intent

More Related Content

DOCX
Proposal aplikasi sistem akademik
PDF
Membuat Aplikasi Android Keren
PPTX
Ppt proposal
PPTX
PPT_Pandi Fathu Romdhoni.pptx
PPTX
About me & about course mobile applicaton development
PPTX
Bus Stop Reminder With Google Maps API & Glympse API Technology
PDF
Makalah Mobile Programming
PDF
SILABUS_PWPB_RANY
Proposal aplikasi sistem akademik
Membuat Aplikasi Android Keren
Ppt proposal
PPT_Pandi Fathu Romdhoni.pptx
About me & about course mobile applicaton development
Bus Stop Reminder With Google Maps API & Glympse API Technology
Makalah Mobile Programming
SILABUS_PWPB_RANY

Similar to Persiapan Perangkat Pemrograman Android Kotlin (20)

DOC
Wida nursyahidah 6701140054_pis1405_tugas apsi
PDF
Kerangka Acuan Kerja
PDF
2010 1-00224-if bab 1
PPTX
Resume kuliah tamu
PDF
Rencana Proses Pembelajaran Pemrograman Web.pdf
PDF
curriculum vitae
PDF
Kerangka Acuan Kerja Pembuatan Perangkat Lunak "Sms Gateway"
PDF
IDSECCONF2024 - Ryan Fabella, Daniel Dhaniswara - Keamanan Siber Pada Kendara...
PPT
Aplikasi Inti Perum Pegadaian
PPTX
Paparan Seminar Aktualisasi.pptx
DOCX
PDF
MENGGUNAKAN MIKROTIK BERBASIS GNS3 PADA JARINGAN
PDF
Paper 1 analisis coverage dan quality of service jaringan wi-fi 2,4 g hz di...
PDF
Pertemuan 1 materi %5 bmp - 2016%5d
DOCX
Aplikasi mobile sebagai media pengenalan songket menggunakan J2ME
PPTX
Perancangan Sistem Klaim Garansi Kendaraan Berbasis Web Dengan Framework Code...
PDF
Jurnal_TA
PDF
Kerangka Acuan Kerja - MPPL
PPTX
Profil D3RPLA Universitas Telkom
DOCX
Fp dokumen perencanaan proyek
Wida nursyahidah 6701140054_pis1405_tugas apsi
Kerangka Acuan Kerja
2010 1-00224-if bab 1
Resume kuliah tamu
Rencana Proses Pembelajaran Pemrograman Web.pdf
curriculum vitae
Kerangka Acuan Kerja Pembuatan Perangkat Lunak "Sms Gateway"
IDSECCONF2024 - Ryan Fabella, Daniel Dhaniswara - Keamanan Siber Pada Kendara...
Aplikasi Inti Perum Pegadaian
Paparan Seminar Aktualisasi.pptx
MENGGUNAKAN MIKROTIK BERBASIS GNS3 PADA JARINGAN
Paper 1 analisis coverage dan quality of service jaringan wi-fi 2,4 g hz di...
Pertemuan 1 materi %5 bmp - 2016%5d
Aplikasi mobile sebagai media pengenalan songket menggunakan J2ME
Perancangan Sistem Klaim Garansi Kendaraan Berbasis Web Dengan Framework Code...
Jurnal_TA
Kerangka Acuan Kerja - MPPL
Profil D3RPLA Universitas Telkom
Fp dokumen perencanaan proyek
Ad

Recently uploaded (18)

PPTX
PPT SEMINAR pengaruh metode drill menggunakan bola gantung
PPTX
EFEKTIVITAS EKSTRAK DAUN INDIGOFERA.pptx
PPTX
OK PENGARUH MARKETING MIX TERHADAP RECOMMENDATION INTENTION DAN REPURCHASE IN...
PDF
GERUDUK MJKN aplikasi mobile JKN persentation
PPTX
pelayanan antenacal care terpadu 95.pptx
PPTX
PPT VIRUS & BAKTERI KEL. 1_20250723_184908_0000.pptx
PPTX
sistem kendali prosebbbbkkkhffssgjjs.pptx
PPTX
PPT Kelas 10. Teks Hasil Observasi (Minggu 1).pptx
PPTX
Proposal Riset_BRImo Conversatinal Banking.pptx
PPTX
PPT KEL 6 MIKRO_20250723_182933_0000.pptx
PDF
Llama Implementations from Scratch - Avalon AI.pdf
PPTX
Paper sirosis hepatis dr siti taqwa.jdusp
PPTX
contoh ppt kuliah kerja praktek iqbal.pptx
PPTX
kuliah kerja praktek muhhamd iqball.pptx
PPTX
Analisis Kecepatan Kendaraan Pada Ruas Jalan Perkotaan Tanjung Selor.pptx
PDF
SLOT 2 Slide Presentation PELAKSANAAN EKSA ILKBS oleh Ts Dr Loke.pdf
PPTX
upn “veteran” Jawa TIMUR tentang analisis data.pptx
PDF
LK - SIMULASI SIKLUS INKUIRI KOLABORATIF.pdf
PPT SEMINAR pengaruh metode drill menggunakan bola gantung
EFEKTIVITAS EKSTRAK DAUN INDIGOFERA.pptx
OK PENGARUH MARKETING MIX TERHADAP RECOMMENDATION INTENTION DAN REPURCHASE IN...
GERUDUK MJKN aplikasi mobile JKN persentation
pelayanan antenacal care terpadu 95.pptx
PPT VIRUS & BAKTERI KEL. 1_20250723_184908_0000.pptx
sistem kendali prosebbbbkkkhffssgjjs.pptx
PPT Kelas 10. Teks Hasil Observasi (Minggu 1).pptx
Proposal Riset_BRImo Conversatinal Banking.pptx
PPT KEL 6 MIKRO_20250723_182933_0000.pptx
Llama Implementations from Scratch - Avalon AI.pdf
Paper sirosis hepatis dr siti taqwa.jdusp
contoh ppt kuliah kerja praktek iqbal.pptx
kuliah kerja praktek muhhamd iqball.pptx
Analisis Kecepatan Kendaraan Pada Ruas Jalan Perkotaan Tanjung Selor.pptx
SLOT 2 Slide Presentation PELAKSANAAN EKSA ILKBS oleh Ts Dr Loke.pdf
upn “veteran” Jawa TIMUR tentang analisis data.pptx
LK - SIMULASI SIKLUS INKUIRI KOLABORATIF.pdf
Ad

Persiapan Perangkat Pemrograman Android Kotlin

  • 1. Pemrograman Mobile 3 SKS | Semester 7 | S1 Sistem Informasi Nizar Rabbi Radliya nizar.radliya@yahoo.com Pertemuan 2 Universitas Komputer Indonesia | 2016
  • 2. nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016
  • 3. nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016  Activity  Service  Content Provider  Resource  Views  Notification
  • 4. nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016 Versi Android
  • 5. nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016 Persiapan Perangkat Pemrograman Android  Java JDK  Android SDK  IDE Eclipse  Android ADT
  • 6. nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016 Instalasi Paket Java JDK Link download: http://www.oracle.com/technetwork/java/javase/downloads/jdk8- downloads-2133151.html
  • 7. nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016 Instalasi Paket Java JDK Deskripsi fitur, pemilihan fitur, dan penentuan lokasi instalasi
  • 8. nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016 Instalasi Paket Java JDK Termasuk instalasi pake java JRE
  • 9. nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016 Instalasi Paket Java SDK Link Download: https://developer.android.com/sdk/index.html Tersedia untuk sistem operasi Windows, Linux, Mac OS.
  • 10. nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016 Level API setiap Versi Android
  • 11. nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016 Penggunan versi android di Pasaran https://developer.android.com/about/dashboards/index.html
  • 12. nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016 Membuat AVD pada SDK sebagai emulator
  • 13. nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016 Membuat AVD pada SDK sebagai emulator
  • 14. nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016 Membuat AVD pada SDK sebagai emulator
  • 15. nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016 Instalasi IDE Eclipse Link download: https://eclipse.org/downloads/index-developer.php Setelah selesai diunduh lalu ekstrak dan sudah siap untuk digunakan.
  • 16. nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016 Instalasi ADT pada IDE Eclipse Link download: http://developer.android.com/sdk/installing/installing-adt.html Download ADT plugin dari eclipse menu Help>Install new software.
  • 17. nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016 Instalasi ADT pada IDE Eclipse https://dl-ssl.google.com/android/eclipse/
  • 18. nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016 Mereferensikan Java SDK pada IDE Eclipse
  • 19. nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016 Hello World pada Android
  • 20. nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016 Hello World pada Android
  • 21. nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016 Hello World pada Android
  • 22. nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016 Hello World pada Android
  • 23. nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016 MainActivity.java package com.is.helloworld; import android.app.Activity; import android.os.Bundle; public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); }
  • 24. nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016 activity_main.xml <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context="com.is.helloworld.MainActivity" > <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/hello_world" /> </RelativeLayout>
  • 25. nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016 string.xml <?xml version="1.0" encoding="utf-8"?> <resources> <string name="app_name">HelloWorld</string> <string name="hello_world">Hello world! Hai, ini program Android pertama saya</string> <string name="action_settings">Settings</string> </resources>
  • 26. nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016 Hasil Run menggunakan AVD
  • 27. nizar.radliya@yahoo.com | Mobile Programming | 3 SKS | Semester 7 | S1 Sistem Informasi | UNIKOM | 2016 Struktur Project Aplikasi Android src/ gen/ Android 4.4.2/ assets/ bin/ libs/ res/ drawable-hdpi drawable-ldpi drawable-mdpi drawable-xhdpi drawable-xxhdpi layout values style.xml string.xml --------------------------- Android Manifest dan Project Properties
  • 28. Pemrograman Mobile 3 SKS | Semester 7 | S1 Sistem Informasi Nizar Rabbi Radliya nizar.radliya@yahoo.com Materi Pertemuan 3 Universitas Komputer Indonesia | 2016 Activity dan Intent: 1. Pengenalan activity 2. Activity life cycle 3. Pengenalan intent 4. Penggabungan activity dengan intent