You are not allowed to perform this action
android_programming_reference
Android Java Programming Reference
Sample Application
package com.hypersweet.sampleapp;
import com.hypersweet.R
import android.app.Activity;
import android.os.Bundle;
public class HelloWorld extends Activity
{
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.hello_world);
}
}
Packages and Classes
android.app
Activity
protected void onCreate(Bundle savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
android.os
Bundle
android.view
Window
android_programming_reference.txt · Last modified: 2010/12/04 21:35 (external edit)