Small.openUri("main", LaunchActivity.this);
Small.openUri("https://github.com/wequick/Small/issues", MainActivity.this);
private static String[] sUris = new String[] {"home", "mine", "stub"};
Fragment fragment = Small.createObject("fragment-v4", sUris[position], MainActivity.this);
Small.openUri("detail?from=app.home", getContext());
Small.openUri("detail/sub", getContext());
Uri uri = Small.getUri(this);
if (uri != null) {
String from = uri.getQueryParameter("from");
if (from != null) {
TextView tvFrom = (TextView) findViewById(R.id.tvFrom);
tvFrom.setText("-- Greet from " + from);
}
}