FileDocCategorySizeDatePackage
PointerLocation.javaAPI DocAndroid 1.5 API8072Wed May 06 22:41:08 BST 2009com.android.development

PointerLocation

public class PointerLocation extends android.app.Activity
Demonstrates wrapping a layout in a ScrollView.

Fields Summary
Constructors Summary
Methods Summary
protected voidonCreate(android.os.Bundle icicle)

        super.onCreate(icicle);
        setContentView(new MyView(this));
        
        // Make the screen full bright for this activity.
        WindowManager.LayoutParams lp = getWindow().getAttributes();
        lp.screenBrightness = 1.0f;
        getWindow().setAttributes(lp);