Home | History | Annotate | Download | only in appshortcuts

Lines Matching defs:uri

25 import android.net.Uri;
164 final Uri uri = Uri.parse(urlAsString);
165 b.setIntent(new Intent(Intent.ACTION_VIEW, uri));
167 setSiteInformation(b, uri);
173 private ShortcutInfo.Builder setSiteInformation(ShortcutInfo.Builder b, Uri uri) {
176 b.setShortLabel(uri.getHost());
177 b.setLongLabel(uri.toString());
179 Bitmap bmp = fetchFavicon(uri);
224 private Bitmap fetchFavicon(Uri uri) {
225 final Uri iconUri = uri.buildUpon().path("favicon.ico").build();