Hola buenos días, mi proyecto es un control parental que filtra contenido explicito("pornografía") e implementacion de búsqueda segura en los buscadores, ya poseo los métodos para dichas acciones pero me he encontrado que en el momento de realizar la navegación en cualquier navegador móvil el resultado se muestra en una nueva pestaña y el objetivo es reemplazar el contenido de dicha pestaña por la pagina de bloqueo o por el resultado de la búsqueda segura.
este es el método para filtrado y búsqueda segura en android, por favor me pueden ayudar.
Filtrado web;
public void leena_primerf(final String url1)
{
RequestQueue queue = Volley.newRequestQueue(getApplicationContext());
url = "http://peerfy.co/api2/index.php?url=" + url1;
StringRequest stringRequest = new StringRequest(Request.Method.GET, url,
new Response.Listener
//@SuppressLint("SetTextI18n")
@Override
public void onResponse(String response) {
// Log.d("cual es la url", "el estado es : " + response + url1);
try {
JSONObject jsonObject = new JSONObject(response);
String estado = jsonObject.getString("status");
int loco = Integer.parseInt(estado);
if (loco>0)
{
String urlco= url_codificada(url1);
// String urlString=("http://peerfy.co/bloqueoandroid/index.php?pk="+urlco);
String urlString=("http://localhost:5358/"+urlco);
Intent intent=new Intent(Intent.ACTION_VIEW,Uri.parse(urlString));
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setPackage(Paquetefirefox);
startActivity(intent);
}
}
catch (Exception ex) {
Log.d("problemas", "el estado es : " + ex);
}
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
}
});
queue.add(stringRequest);
}
____
Búsqueda segura;
public void Safesearchg(String urlgoogle){
String urlString=(urlgoogle.concat("&safe=strict"));
Intent sharingIntentg = new Intent(Intent.ACTION_VIEW);
sharingIntentg.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
sharingIntentg.setData(Uri.parse(urlString));
sharingIntentg.setPackage(Paquetechrome);
Intent chooserIntentg = Intent.createChooser(sharingIntentg, "Open With");
chooserIntentg.setPackage(Paquetechrome);
startActivity(Intent.createChooser(sharingIntentg, "Open With").setFlags(Intent.FLAG_ACTIVITY_NEW_TASK));
}