FileDocCategorySizeDatePackage
ExtractButton.javaAPI DocAndroid 1.5 API841Wed May 06 22:41:54 BST 2009android.inputmethodservice

ExtractButton

public class ExtractButton extends android.widget.Button
Specialization of {@link Button} that ignores the window not being focused.

Fields Summary
Constructors Summary
public ExtractButton(android.content.Context context)

        super(context, null);
    
public ExtractButton(android.content.Context context, android.util.AttributeSet attrs)

        super(context, attrs, com.android.internal.R.attr.buttonStyle);
    
public ExtractButton(android.content.Context context, android.util.AttributeSet attrs, int defStyle)

        super(context, attrs, defStyle);
    
Methods Summary
public booleanhasWindowFocus()
Pretend like the window this view is in always has focus, so it will highlight when selected.

        return this.isEnabled() ? true : false;