Sunday, 29 November 2015

Cara Setting Value.Sring di Aplikasi Android

<?xml version="1.0" encoding="utf-8"?> <resources>     <string name="app_name">ContohEntriDatabase</string>     <string name="hello_world">Hello world!</string>     <string name="action_settings">Settings</string>       <string name="menu_settings">Settings</string>     <string name="title_activity_main">Contoh Entri Database</string>     <string name="barang_hint">Nama...

Setting Konfigurasi Android Manifest pada Aplikasi Android

//*Author : midasoft.blogspot.com <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android"     package="com.example.contohentridatabase"     android:versionCode="1"     android:versionName="1.0" >     <uses-sdk         android:minSdkVersion="8"         android:targetSdkVersion="21" />     <application        ...

Source code View Data XML di Android

//Author: midasoft.blogspot.com <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"     android:layout_width="match_parent"     android:layout_height="match_parent"     android:orientation="vertical" >     <TextView         android:id="@+id/data_view"         android:layout_width="118dp"         android:layout_height="wrap_content"        ...

Source code cara membuat View Data.java dengan Aplikasi Android

package com.example.contohentridatabase; //Author: midasoft.blogspot.com import java.util.ArrayList; import android.app.ListActivity; import android.os.Bundle; import android.util.Log; import android.widget.ArrayAdapter; public class ViewData extends ListActivity {             //inisialisasi kontroller           private DBDataSourceMob dataSource;             //inisialisasi arraylist  ...

Source code Entri Data XML di Aplikasi Android

//Author: midasoft.blogspot.com <?xml version="1.0" encoding="utf-8"?> <LinearLayout     xmlns:android="http://schemas.android.com/apk/res/android"     android:layout_width="match_parent"     android:layout_height="match_parent"     android:orientation="vertical" >     <EditText         android:id="@+id/nama_barang"         android:layout_width="wrap_content"        ...