FileDocCategorySizeDatePackage
DescendantFocusability.javaAPI DocAndroid 1.5 API1761Wed May 06 22:42:02 BST 2009com.android.frameworktest.focus

DescendantFocusability

public class DescendantFocusability extends android.app.Activity

Fields Summary
public android.view.ViewGroup
beforeDescendants
public android.widget.Button
beforeDescendantsChild
public android.view.ViewGroup
afterDescendants
public android.widget.Button
afterDescendantsChild
public android.view.ViewGroup
blocksDescendants
public android.widget.Button
blocksDescendantsChild
Constructors Summary
Methods Summary
protected voidonCreate(android.os.Bundle savedInstanceState)

        super.onCreate(savedInstanceState);

        setContentView(R.layout.descendant_focusability);

        beforeDescendants = (ViewGroup) findViewById(R.id.beforeDescendants);
        beforeDescendantsChild = (Button) beforeDescendants.getChildAt(0);

        afterDescendants = (ViewGroup) findViewById(R.id.afterDescendants);
        afterDescendantsChild = (Button) afterDescendants.getChildAt(0);

        blocksDescendants = (ViewGroup) findViewById(R.id.blocksDescendants);
        blocksDescendantsChild = (Button) blocksDescendants.getChildAt(0);