Android SQLite Database Tutorial 1 + 2 # Introduction + Creating Database and Tables
11 | 1package com.example.programmingknowledge.sqliteapp; |
11 |
40
Introduction + Creating Database and Tables
android sqlite database tutorial
android sqlite database tutorial for beginners
Developing Android Apps - Optional SQLite Tutorial
Android Tutorials for Beginners: SQLIteDatabase in Android
android sqlite database tutorial youtube
android sqlite database tutorial step by step
android sqlite create database example
android database sqlite sqlitedatabase
Android SQLite database and content provider
1package com.example.programmingknowledge.sqliteapp;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
public class MainActivity extends ActionBarActivity {
DatabaseHelper myDb;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
myDb = new DatabaseHelper(this);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
11 | 1<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" |
Introduction + Creating Database and Tables
android sqlite database tutorial
android sqlite database tutorial for beginners
Developing Android Apps - Optional SQLite Tutorial
Android Tutorials for Beginners: SQLIteDatabase in Android
android sqlite database tutorial youtube
android sqlite database tutorial step by step
android sqlite create database example
android database sqlite sqlitedatabase
Android SQLite database and content provider
Android SQLite Database Tutorial 1 + 2 # Introduction + Creating Database and Tables
Reviewed by Mursal Zheker
on
Minggu, April 05, 2015
Rating:

Tidak ada komentar: