Posts

Showing posts from August, 2021

10 Best Free Video Editors for Android without Watermark

  10 Best Free Video Editors for Android without Watermark ActionDirector. Adobe Premiere Rush. YouCut. VLLO. Kruso. PixArt Video. Super Studio. Inshot. Super Studio

instagram best time to post

  Here’s when you should post on Instagram in India: Monday:  3:15 pm, 7:30 pm and 7:30 am IST Tuesday:  11:30 am, 1:30 pm, and 6:30 pm IST Wednesday:  4:30 pm, 5:30 pm, and 8:30 am IST Thursday:  6:30 pm, 9:30 pm, and 4:30 am IST Friday:  2:30 pm, 10:30 pm, and 12:30 am IST Saturday:  8:30 pm, 4:30 am, and 5:30 am IST Sunday:  4:30 pm, 5:30 pm, and 2:00 am IST

fix slow pc [refresh slow]

This one that i found that it fix my pc so here it is First step : Go to search and type Regedit and hit enter if it prompt for permission select yes Second step : Once the Registry Editor open, go to or expand the HKEY_CLASSES_ROOT and search for Directory Third step : Once you found Directory go to shellex and in shellex go to ContextMenuHandlers Fourth step : inside the  ContextMenuHandlers delete all the folder inside there except New and WorkFolder  And then you can try to refresh your pc and it refresh normally. This help for me hope this will help you too.

Scaling a web view app

  I found a lot of import and great informations for you. But, the only way works for me was this way: webView = (WebView) findViewById(R.id.noticiasWebView); webView.setInitialScale(1); webView.getSettings().setJavaScriptEnabled(true); webView.getSettings().setLoadWithOverviewMode(true); webView.getSettings().setUseWideViewPort(true); webView.setScrollBarStyle(WebView.SCROLLBARS_OUTSIDE_OVERLAY); webView.setScrollbarFadingEnabled(false); webView.loadUrl("http://www.resource.com.br/"); Add this to your MainActivity.java under your webview stuff;