What we are trying to do: We are attempting to replicate an existing Java Desktop application into an Android application (based upon Java as well). The desktop application uses the following Desktop class code to open any form of file type (e.g. docx, xlsx, txt, pdf. jpg, etc.) passed to it. This code will open the file to an associated application or prompt the user to select an application if none is associated or exists.
Our problem: Being new to Android development and system classes, we haven't been able to correctly identify if there is such a class in Android or the proper terminology to find it and could use your help.
Desktop.getDesktop().open(file); // Java version