Main activity, replace drawables with SVGs

Signed-off-by: R4SAS <r4sas@i2pmail.org>
This commit is contained in:
R4SAS
2021-02-20 23:16:58 +03:00
parent fe7af298e0
commit 48555bd1af
12 changed files with 182 additions and 25 deletions
@@ -35,13 +35,13 @@ public class WebConsoleActivity extends Activity {
@Override
public void onRefresh() {
swipeRefreshLayout.setRefreshing(true);
new Handler().postDelayed(new Runnable() {
new Handler().post(new Runnable() {
@Override
public void run() {
swipeRefreshLayout.setRefreshing(false);
webView.reload();
}
}, 1000);
});
}
});
}