Include Header File Section
C program depends upon some header files for function definition that are used in program.
Each header file by default is extended with .h. The header file should be included using # include directive as given here.
Global Declaration
This section declares some variables that are used in more than one function. These variables
are...
Monday, September 26, 2016
Thursday, September 22, 2016
AIDE Tutorial - 23.1 Option menu 2
Create a new folder in resource name it my_menu
my_menu.xml
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/item1"
android:title="Setting"/>
<item
...
Sunday, September 4, 2016
AIDE Tutorial - 20.3 WebView with exit Alert Dailog
Java
package com.kc.webview3;
import android.app.*;
import android.os.*;
import android.widget.*;
import android.webkit.*;
public class MainActivity extends Activity
{
private FrameLayout fl;
private ProgressBar pb;
private WebView web;
@Override
protected void onCreate(Bundle savedInstanceState)
...