Search in sources :

Example 31 with RecordAction

use of de.baumann.browser.database.RecordAction in project browser by scoute-dich.

the class AdBlock method clearDomains.

public synchronized void clearDomains() {
    RecordAction action = new RecordAction(context);
    action.open(true);
    action.clearDomains();
    action.close();
    whitelist.clear();
}
Also used : RecordAction(de.baumann.browser.Database.RecordAction)

Example 32 with RecordAction

use of de.baumann.browser.database.RecordAction in project browser by scoute-dich.

the class Cookie method loadDomains.

private static synchronized void loadDomains(Context context) {
    RecordAction action = new RecordAction(context);
    action.open(false);
    whitelistCookie.clear();
    whitelistCookie.addAll(action.listDomainsCookie());
    action.close();
}
Also used : RecordAction(de.baumann.browser.Database.RecordAction)

Example 33 with RecordAction

use of de.baumann.browser.database.RecordAction in project browser by scoute-dich.

the class Cookie method clearDomains.

public synchronized void clearDomains() {
    RecordAction action = new RecordAction(context);
    action.open(true);
    action.clearDomainsCookie();
    action.close();
    whitelistCookie.clear();
}
Also used : RecordAction(de.baumann.browser.Database.RecordAction)

Aggregations

RecordAction (de.baumann.browser.Database.RecordAction)33 View (android.view.View)11 ListView (android.widget.ListView)11 TextView (android.widget.TextView)11 WebView (android.webkit.WebView)8 AdapterView (android.widget.AdapterView)8 AutoCompleteTextView (android.widget.AutoCompleteTextView)8 HorizontalScrollView (android.widget.HorizontalScrollView)8 ImageView (android.widget.ImageView)8 VideoView (android.widget.VideoView)8 Record (de.baumann.browser.Database.Record)8 NinjaWebView (de.baumann.browser.View.NinjaWebView)8 DynamicGridView (org.askerov.dynamicgrid.DynamicGridView)8 Paint (android.graphics.Paint)6 EditText (android.widget.EditText)6 File (java.io.File)6 UnsupportedEncodingException (java.io.UnsupportedEncodingException)6 Button (android.widget.Button)5 Adapter_Record (de.baumann.browser.View.Adapter_Record)5 BufferedReader (java.io.BufferedReader)4