mirror of
https://github.com/FWGS/xash3d-fwgs.git
synced 2026-08-05 03:24:56 +08:00
Implement ShellExecute for Android(java part)
This commit is contained in:
@@ -927,6 +927,13 @@ public class XashActivity extends Activity {
|
||||
fMouseShown = show != 0;
|
||||
handler.showMouse( fMouseShown );
|
||||
}
|
||||
|
||||
// Just opens browser
|
||||
public static void shellExecute( String path )
|
||||
{
|
||||
final Intent intent = new Intent(Intent.ACTION_VIEW).setData(Uri.parse(path));
|
||||
mSingleton.startActivity(intent);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user