Hello,
I know there a few Java experts on here so thought i d ask:
I have the following procedure which fires up the dropbox app fine.
import android.content.Intent;
import android.app.Activity;
import android.content.ComponentName;
import android.content.Context;
import android.content.pm.PackageManager;
public static void opendboxjava()
{
Context context = getApplicationContext();
PackageManager manager = context.getPackageManager();
Intent i = manager.getLaunchIntentForPackage("com.dropbox.android");
i.addCategory(Intent.CATEGORY_LAUNCHER);
context.startActivity(i);
}
but can anyone help me open a specific folder in dropbox?
thanks for your time
ISO
I know there a few Java experts on here so thought i d ask:
I have the following procedure which fires up the dropbox app fine.
import android.content.Intent;
import android.app.Activity;
import android.content.ComponentName;
import android.content.Context;
import android.content.pm.PackageManager;
public static void opendboxjava()
{
Context context = getApplicationContext();
PackageManager manager = context.getPackageManager();
Intent i = manager.getLaunchIntentForPackage("com.dropbox.android");
i.addCategory(Intent.CATEGORY_LAUNCHER);
context.startActivity(i);
}
but can anyone help me open a specific folder in dropbox?
thanks for your time
ISO