hay un método en el código fuente de la aplicación Navegador,:
public boolean shouldOverrideUrlLoading(WebView view, String url) { ... }
Después de una URL hace clic y aún no se está empezando a carga:
convertirá la URL a la intención
Intent intent;
// perform generic parsing of the URI to turn it into an Intent.
try {
intent = Intent.parseUri(url, Intent.URI_INTENT_SCHEME);
} catch (URISyntaxException ex) {
Log.w("Browser", "Bad URI " + url + ": " + ex.getMessage());
return false;
}
si no comienza con market: // (o algunos esquemas predefinidos), intente startActivityIfNeeded()
intent.addCategory(Intent.CATEGORY_BROWSABLE);
intent.setComponent(null);
try {
if (startActivityIfNeeded(intent, -1)) {
return true;
}
} catch (ActivityNotFoundException ex) {
// ignore the error. If no application can handle the URL,
// eg about:blank, assume the browser can handle it.
}
Es una información muy útil! Me reproducir la situación en un código simple:
Intent intent = Intent.parseUri("mycam://http://camcorder.com", Intent.URI_INTENT_SCHEME);
intent.addCategory(Intent.CATEGORY_BROWSABLE);
intent.setComponent(null);
System.out.println(intent);
El resultado será proporcionar pistas para mí escribir una actividad con la intención de filtro:
<activity android:name=".MyCamActivity" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="mycam" />
</intent-filter>
</activity>
PS. no se olvide de android.intent.category.DEFAUL.
Por último, su actividad puede invocar por MyCam: // esquema
¿Entonces todo lo que tengo que hacer es crear mi filtro de intención? Por cierto, aquí está el enlace real con el que haré las pruebas: http://gunitec.com.do/carlos-portes.html "Cam1" es el enlace real con el que probaré. Probé el filtro de intención y no obtuve nada. –
Lo pruebo bien. ¿Podría proporcionar el AndroidManifest.xml? – qrtt1
Ok, ¿cómo puedo enviártelo? Perdón por la respuesta tardía, no me notificaron que me respondiste. –