DeskScapes gives you the capability to animate and customize the wallpaper on your Windows desktop. Choose from the massive integrated library or use your own images or video files to personalize your desktop. Animate your Windows desktop wallpaper Use video and Dream files with DeskScapes to apply animated wallpaper to your desktop. The .Dream format, which DeskScapes uses, has been specially designed to contain content used to animate wallpaper. You can also apply any dream as your PC screensaver! Easily customize and create your own backgrounds DeskScapes includes over 60 special effects plus colorization options to make any image or video into a fantastic, custom background. Want to create a .Dream to share? Use the included Dream Maker app to package your own animated or video creations. System Requirements Requires a 64-bit processor and operating system Windows® 7 / 8 / 10 64-bit Microsoft DirectX™ Minimum screen resolution: 1280 x 720 Download - DeskScapes Full How ...
Webview is a tool in android studio and it is used to load html or website to mobile, through this we can easy to create the android application through html,css and javascript code.
1) First create a new project in android studio more details...
2) Open activity_main.xml file under the layout folder.
3) Copy the following code to the activity_main.xml
When you add the code to activity_main.xml you can see the preview by clicking Design.
1) First create a new project in android studio more details...
2) Open activity_main.xml file under the layout folder.
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
When you add the code to activity_main.xml you can see the preview by clicking Design.
4) You must set internet permission in AndroidManifest.xml. Open AndroidManifest.xml file and enter the following code.
<uses-permission android:name="android.permission.INTERNET" />
5) Open MainActivity.java file and modify it by the below steps.
a) import the following class
import android.webkit.WebView;
import android.webkit.WebViewClient;
b) When you want to load the url to your webview, just call the below code.
WebView myWebView = (WebView) findViewById(R.id.webview);
myWebView.setWebViewClient(new WebViewClient());
myWebView.loadUrl("http://www.google.com");
6) Now you are done with your first webview, just run the code.







Download
Nhận xét
Đăng nhận xét