FileDocCategorySizeDatePackage
Menu.javaAPI DocAndroid 1.5 API1583Wed May 06 22:42:02 BST 2009com.android.dumprendertree

Menu

public class Menu extends FileList

Fields Summary
Constructors Summary
Methods Summary
booleanfileFilter(java.io.File f)

    	if (f.getName().startsWith("."))
    		return false;
    	if (f.getName().equalsIgnoreCase("resources"))
    		return false;
    	if (f.isDirectory())
    		return true;
    	if (f.getPath().toLowerCase().endsWith("ml"))
    		return true;
    	return false;
    
public voidonCreate(android.os.Bundle icicle)

        super.onCreate(icicle);
    
voidprocessFile(java.lang.String filename, boolean selection)

        
        Intent intent = new Intent(Intent.ACTION_VIEW);
        intent.setClass(this, TestShellActivity.class);
        intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
        intent.putExtra(TestShellActivity.TEST_URL, "file://" + filename);
        startActivity(intent);