-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathRemove.java
More file actions
30 lines (22 loc) · 800 Bytes
/
Remove.java
File metadata and controls
30 lines (22 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.vivek.github.basic;
import com.vivek.github.R;
import android.app.Activity;
import android.os.Bundle;
import android.view.WindowManager;
import android.webkit.WebView;
public class Remove extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
String remmo = "file:///android_asset/remove.html";
String remmov = "file:///android_asset/remove2.html";
super.onCreate(savedInstanceState);
setContentView(R.layout.remove);
WebView remove = (WebView)findViewById(R.id.remove);
remove.loadUrl(remmo);
WebView remove2 = (WebView)findViewById(R.id.remove2);
remove2.loadUrl(remmov);
}
}