<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Learning and Teaching</title> <style> /* General Styles */ body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: white; color: black; } header { display: flex; justify-content: space-between; align-items: center; padding: 10px 20px; background-color: #f8f9fa; border-bottom: 1px solid #ddd; } .logo img { height: 50px; } nav ul { list-style: none; margin: 0; padding: 0; display: flex; } nav ul li { margin-right: 20px; } nav ul li a { text-decoration: none; color: black; } .search-bar { display: flex; } .search-bar input { padding: 5px; margin-right: 5px; } .button-container { display: g...
Posts
Showing posts from February, 2025
Sketchware youtube full screen
- Get link
- X
- Other Apps
Sketchware youtube full screen 1. Webview1 2. create More block named extra 3. In more block take add source directly 4. Fill this code in add source directly } public class CustomWebClient extends WebChromeClient { private View mCustomView; private WebChromeClient.CustomViewCallback mCustomViewCallback; protected FrameLayout frame; // Initially mOriginalOrientation is set to Landscape private int mOriginalOrientation = android.content.pm.ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE; private int mOriginalSystemUiVisibility; // Constructor for CustomWebClient public CustomWebClient() {} public Bitmap getDefaultVideoPoster() { if (MainActivity.this == null) { return null; } return BitmapFactory.decodeResource(MainActivity.this.getApplicationContext().getResources(), 2130837573); } public void onShowCustomView(View paramView, WebChromeClient.CustomViewCallback viewCallback) { if (this.mCustomView != null) { onHideCustomView(); return; } this.mCustomView = par...