FileDocCategorySizeDatePackage
DescendantFocusability.javaAPI DocAndroid 5.1 API1757Thu Mar 12 22:22:12 GMT 2015android.widget.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);